UNPKG

tweetnacl-ts

Version:

Port of TweetNaCl cryptographic library to TypeScript (and ES6)

24 lines (22 loc) 617 B
// Ported in 2014 by Dmitry Chestnykh and Devi Mandiri. // Public domain. // // Implementation derived from TweetNaCl version 20140427. // See for details: http://tweetnacl.cr.yp.to/ // // Ported to TypeScript in 2018 by K. <kayo@illumium.org> // export * from './array'; export * from './validate'; export * from './convert'; export * from './verify'; export * from './random'; export * from './scalarmult'; export * from './secretbox'; export * from './box'; export * from './sign'; export * from './hash'; export * from './auth'; export * from './blake2s'; export * from './blake2b'; export * from './sealedbox';