/** * Key generation request */ export interface KeyGenerationRequest { /** * Optional Input Key Material, if not supplied a random value will be generated via OS RNG */ readonly ikm?: Uint8Array; /** * Optional key info */ readonly keyInfo?: Uint8Array; }