@relaycorp/webcrypto-kms
Version:
WebCrypto-compatible client for Key Management Services like GCP KMS
12 lines • 509 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.GcpKmsRsaPssPrivateKey = void 0;
const PrivateKey_1 = require("../PrivateKey");
class GcpKmsRsaPssPrivateKey extends PrivateKey_1.RsaPssPrivateKey {
constructor(kmsKeyVersionPath, hashingAlgorithm, provider) {
super(hashingAlgorithm, provider);
this.kmsKeyVersionPath = kmsKeyVersionPath;
}
}
exports.GcpKmsRsaPssPrivateKey = GcpKmsRsaPssPrivateKey;
//# sourceMappingURL=GcpKmsRsaPssPrivateKey.js.map