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