8 lines
623 B
TypeScript
Raw Normal View History

2025-04-19 15:38:48 +08:00
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