mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-25 08:17:58 +00:00
chore: update to version 14.0.11 and align website URLs
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.naclDecrypt = naclDecrypt;
|
||||
const tweetnacl_js_1 = require("./tweetnacl.js");
|
||||
/**
|
||||
* @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([...], [...], [...]); // => [...]
|
||||
* ```
|
||||
*/
|
||||
function naclDecrypt(encrypted, nonce, secret) {
|
||||
return (0, tweetnacl_js_1.naclSecretboxOpen)(encrypted, nonce, secret);
|
||||
}
|
||||
Reference in New Issue
Block a user