@signumjs/crypto
Version:
Cryptographic functions for building Signum Network apps.
18 lines (17 loc) • 492 B
TypeScript
/**
* This package contains all cryptographic functions
* needed for Burstcoin/Signum.
*
* @module crypto
* */
export * from './encryption';
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';