mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-29 11:27:59 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* @name naclDecrypt
|
||||
* @summary Decrypts a message using the supplied secretKey and nonce
|
||||
* @description
|
||||
* Returns an decrypted message, using the `secret` and `nonce`.
|
||||
* @example
|
||||
* <BR>
|
||||
*
|
||||
* ```javascript
|
||||
* import { naclDecrypt } from '@pezkuwi/util-crypto';
|
||||
*
|
||||
* naclDecrypt([...], [...], [...]); // => [...]
|
||||
* ```
|
||||
*/
|
||||
export declare function naclDecrypt(encrypted: Uint8Array, nonce: Uint8Array, secret: Uint8Array): Uint8Array | null;
|
||||
Reference in New Issue
Block a user