@relaycorp/webcrypto-kms
Version:
WebCrypto-compatible client for Key Management Services like GCP KMS
8 lines (7 loc) • 378 B
TypeScript
import type { AwsKmsRsaPssProvider } from './AwsKmsRsaPssProvider';
import { RsaPssPrivateKey } from '../PrivateKey';
import { HashingAlgorithm } from '../algorithms';
export declare class AwsKmsRsaPssPrivateKey extends RsaPssPrivateKey<AwsKmsRsaPssProvider> {
arn: string;
constructor(arn: string, hashingAlgorithm: HashingAlgorithm, provider: AwsKmsRsaPssProvider);
}