@signumjs/crypto
Version:
Cryptographic functions for building Signum Network apps.
19 lines (18 loc) • 516 B
TypeScript
/**
* This package contains all cryptographic functions
* needed for Burstcoin/Signum.
*
* @module crypto
* */
export * from './decrypt';
export * from './encrypt';
export * from './random';
export * from './mnemonic';
export * from './sha256';
export * from './sign';
export * from './typings/cryptoError';
export * from './typings/signKeys';
export * from './typings/encryptedMessage';
export * from './typings/encryptedData';
export * from './typings/cryptoAdapter';
export { Buffer, Crypto } from './base';