UNPKG

@relaycorp/webcrypto-kms

Version:

WebCrypto-compatible client for Key Management Services like GCP KMS

8 lines (7 loc) 247 B
export type ProtectionLevel = 'SOFTWARE' | 'HSM'; export interface GcpKmsConfig { readonly location: string; readonly keyRing: string; readonly protectionLevel: ProtectionLevel; readonly destroyScheduledDurationSeconds?: number; }