mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-08-06 23:35:49 +00:00
3 lines
219 B
TypeScript
3 lines
219 B
TypeScript
export declare function naclSecretbox(msg: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array;
|
|
export declare function naclSecretboxOpen(box: Uint8Array, nonce: Uint8Array, key: Uint8Array): Uint8Array | null;
|