2020-06-18 15:09:03 +00:00
|
|
|
'use strict'
|
2019-08-13 15:00:27 +00:00
|
|
|
|
2017-01-24 10:41:06 +00:00
|
|
|
// Based on https://github.com/dchest/tweetnacl-js/blob/6dcbcaf5f5cbfd313f2dcfe763db35c828c8ff5b/nacl-fast.js.
|
|
|
|
|
|
|
|
// 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/
|
|
|
|
|
2020-08-12 13:39:14 +00:00
|
|
|
forward(require('./randombytes'))
|
2020-06-24 12:01:48 +00:00
|
|
|
forward(require('./memory'))
|
2020-08-12 13:39:14 +00:00
|
|
|
forward(require('./helpers'))
|
|
|
|
forward(require('./crypto_verify'))
|
2020-06-18 15:09:03 +00:00
|
|
|
forward(require('./crypto_box'))
|
2017-06-06 19:04:36 +00:00
|
|
|
forward(require('./crypto_generichash'))
|
2020-06-18 15:09:03 +00:00
|
|
|
forward(require('./crypto_hash'))
|
|
|
|
forward(require('./crypto_hash_sha256'))
|
2017-06-07 20:38:40 +00:00
|
|
|
forward(require('./crypto_kdf'))
|
2020-06-18 15:09:03 +00:00
|
|
|
forward(require('./crypto_kx'))
|
|
|
|
forward(require('./crypto_aead'))
|
|
|
|
forward(require('./crypto_onetimeauth'))
|
|
|
|
forward(require('./crypto_scalarmult'))
|
|
|
|
forward(require('./crypto_secretbox'))
|
2017-06-12 08:05:49 +00:00
|
|
|
forward(require('./crypto_shorthash'))
|
2020-06-18 15:09:03 +00:00
|
|
|
forward(require('./crypto_sign'))
|
2017-06-28 09:11:38 +00:00
|
|
|
forward(require('./crypto_stream'))
|
2020-06-18 15:09:03 +00:00
|
|
|
forward(require('./crypto_stream_chacha20'))
|
2017-01-24 10:41:06 +00:00
|
|
|
|
2017-06-06 19:04:36 +00:00
|
|
|
function forward (submodule) {
|
|
|
|
Object.keys(submodule).forEach(function (prop) {
|
|
|
|
module.exports[prop] = submodule[prop]
|
|
|
|
})
|
|
|
|
}
|