@subsocial/utils
Version:
JavaScript utils for Subsocial blockchain.
9 lines (8 loc) • 344 B
TypeScript
/**
* @summary Implements [NaCl](http://nacl.cr.yp.to/) secret-key authenticated encryption, public-key authenticated encryption
*/
export { naclDecrypt } from './decrypt';
export { naclEncrypt } from './encrypt';
export { naclBoxPairFromSecret } from './box/fromSecret';
export { naclOpen } from './open';
export { naclSeal } from './seal';