D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
etb1lp46s9ed
/
public_html
/
wabulk.whatzi.online
/
node_modules
/
libsignal
/
src
/
Filename :
curve.d.ts
back
Copy
export interface KeyPairType { pubKey: Uint8Array; privKey: Uint8Array; } export function generateKeyPair(): KeyPairType; export function calculateAgreement( publicKey: Uint8Array, privateKey: Uint8Array ): Uint8Array; export function calculateSignature( privateKey: Uint8Array, message: Uint8Array ): Uint8Array; export function verifySignature( publicKey: Uint8Array, message: Uint8Array, signature: Uint8Array ): boolean;