UNPKG

466 BJavaScriptView Raw
1// Copyright 2017-2022 @polkadot/util-crypto authors & contributors
2// SPDX-License-Identifier: Apache-2.0
3
4/**
5 * @summary Implements [NaCl](http://nacl.cr.yp.to/) secret-key authenticated encryption, public-key authenticated encryption
6 */
7export { naclDecrypt } from "./decrypt.js";
8export { naclEncrypt } from "./encrypt.js";
9export { naclBoxPairFromSecret } from "./box/fromSecret.js";
10export { naclOpen } from "./open.js";
11export { naclSeal } from "./seal.js";
\No newline at end of file