UNPKG

@relaycorp/webcrypto-kms

Version:

WebCrypto-compatible client for Key Management Services like GCP KMS

9 lines 298 B
import { RsaPssPrivateKey } from '../PrivateKey'; export class AwsKmsRsaPssPrivateKey extends RsaPssPrivateKey { arn; constructor(arn, hashingAlgorithm, provider) { super(hashingAlgorithm, provider); this.arn = arn; } } //# sourceMappingURL=AwsKmsRsaPssPrivateKey.js.map