interface LockKey {
    encPK: Uint8Array<ArrayBufferLike>;
    encSK: Uint8Array<ArrayBufferLike>;
    iv: Uint8Array<ArrayBufferLike>;
    keyFormatVersion: number;
    privateKey: Uint8Array<ArrayBufferLike>;
    publicKey: Uint8Array<ArrayBufferLike>;
}

Properties

encPK: Uint8Array<ArrayBufferLike>
encSK: Uint8Array<ArrayBufferLike>
iv: Uint8Array<ArrayBufferLike>
keyFormatVersion: number
privateKey: Uint8Array<ArrayBufferLike>
publicKey: Uint8Array<ArrayBufferLike>