D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabulk.whatzi.online
/
node_modules
/
libsignal
/
src
/
Filename :
crypto.d.ts
back
Copy
export function decrypt( key: Uint8Array, ciphertext: Uint8Array, iv: Uint8Array ): Promise<Uint8Array>; export function encrypt( key: Uint8Array, plaintext: Uint8Array, iv: Uint8Array ): Promise<Buffer>; export function calculateMAC(key: Buffer, data: Uint8Array): Uint8Array; export function deriveSecrets( key: Uint8Array, salt: Buffer, info: Buffer ): [Buffer, Buffer];