UNPKG

@adorsys-gis/web-auth-prf

Version:

A WebAuthn library implementing password-based key derivation functions (PRF) for secure authentication and encryption

7 lines (6 loc) 177 B
export interface EncryptionKey { key: CryptoKey; } export declare class KeyDerivationService { deriveKey(prfOutput: Uint8Array, salt: Uint8Array): Promise<CryptoKey>; }