@relaycorp/webcrypto-kms
Version:
WebCrypto-compatible client for Key Management Services like GCP KMS
9 lines • 354 B
JavaScript
import { RsaPssPrivateKey } from '../PrivateKey';
export class GcpKmsRsaPssPrivateKey extends RsaPssPrivateKey {
kmsKeyVersionPath;
constructor(kmsKeyVersionPath, hashingAlgorithm, provider) {
super(hashingAlgorithm, provider);
this.kmsKeyVersionPath = kmsKeyVersionPath;
}
}
//# sourceMappingURL=GcpKmsRsaPssPrivateKey.js.map