2020-06-16 14:58:58 +00:00
|
|
|
'use strict'
|
2017-01-24 10:41:06 +00:00
|
|
|
|
|
|
|
// Based on https://github.com/dchest/tweetnacl-js/blob/6dcbcaf5f5cbfd313f2dcfe763db35c828c8ff5b/nacl-fast.js.
|
|
|
|
|
2017-02-12 02:37:17 +00:00
|
|
|
var sodium = module.exports
|
2017-01-24 10:41:06 +00:00
|
|
|
|
|
|
|
// 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/
|
|
|
|
|
2017-06-19 20:32:33 +00:00
|
|
|
// also forwarded at the bottom but randombytes is non-enumerable
|
2017-01-24 10:41:06 +00:00
|
|
|
|
2020-06-16 14:57:58 +00:00
|
|
|
sodium.sodium_memzero = function (arr) {
|
|
|
|
arr.fill(0)
|
2017-06-06 19:04:50 +00:00
|
|
|
}
|
|
|
|
|
2020-03-04 13:50:09 +00:00
|
|
|
sodium.sodium_malloc = function (n) {
|
|
|
|
return new Uint8Array(n)
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:08:29 +00:00
|
|
|
forward(require('./crypto_box'))
|
|
|
|
forward(require('./crypto_generichash'))
|
2020-05-04 18:52:17 +00:00
|
|
|
forward(require('./crypto_hash'))
|
2020-06-18 12:09:12 +00:00
|
|
|
forward(require('./crypto_hash_sha256'))
|
2020-05-04 19:08:29 +00:00
|
|
|
forward(require('./crypto_kdf'))
|
2020-06-16 13:54:44 +00:00
|
|
|
forward(require('./crypto_kx'))
|
2020-06-16 22:56:59 +00:00
|
|
|
forward(require('./crypto_aead'))
|
2020-05-04 19:08:29 +00:00
|
|
|
forward(require('./crypto_onetimeauth'))
|
2020-05-04 18:49:21 +00:00
|
|
|
forward(require('./crypto_scalarmult'))
|
2020-05-04 19:04:41 +00:00
|
|
|
forward(require('./crypto_secretbox'))
|
2020-05-04 19:08:29 +00:00
|
|
|
forward(require('./crypto_shorthash'))
|
2020-05-04 18:58:36 +00:00
|
|
|
forward(require('./crypto_sign'))
|
2020-05-04 16:47:52 +00:00
|
|
|
forward(require('./crypto_stream'))
|
2020-06-12 15:06:31 +00:00
|
|
|
forward(require('./crypto_stream_chacha20'))
|
2020-06-17 11:10:21 +00:00
|
|
|
forward(require('./crypto_verify'))
|
2020-05-04 19:08:29 +00:00
|
|
|
forward(require('./randombytes'))
|
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]
|
|
|
|
})
|
|
|
|
}
|