@walletconnect/crypto
Version:
Isomorphic Cryptography Library for AES, HMAC and SHA2
8 lines • 623 B
TypeScript
export declare function nodeAesEncrypt(iv: Uint8Array, key: Uint8Array, data: Uint8Array): Uint8Array;
export declare function nodeAesDecrypt(iv: Uint8Array, key: Uint8Array, data: Uint8Array): Uint8Array;
export declare function nodeHmacSha256Sign(key: Uint8Array, data: Uint8Array): Uint8Array;
export declare function nodeHmacSha512Sign(key: Uint8Array, data: Uint8Array): Uint8Array;
export declare function nodeSha256(data: Uint8Array): Uint8Array;
export declare function nodeSha512(data: Uint8Array): Uint8Array;
export declare function nodeRipemd160(data: Uint8Array): Uint8Array;
//# sourceMappingURL=node.d.ts.map