├── .gitignore ├── BUILDING.md ├── Makefile ├── README.md ├── TODO ├── benchmark-results └── analyze.py ├── benchmark.html ├── benchmark.js ├── bower.json ├── lib └── nacl_factory.js ├── libsodium-1.0.18-stable.tar.gz ├── libsodium-memory-configuration.patch ├── nacl_cooked.js ├── nacl_cooked_prefix.js ├── nacl_cooked_suffix.js ├── package.json └── test ├── runner.html └── tests.js /.gitignore: -------------------------------------------------------------------------------- 1 | libsodium-stable/ 2 | node_modules/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /BUILDING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/BUILDING.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/TODO -------------------------------------------------------------------------------- /benchmark-results/analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/benchmark-results/analyze.py -------------------------------------------------------------------------------- /benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/benchmark.html -------------------------------------------------------------------------------- /benchmark.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/benchmark.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/bower.json -------------------------------------------------------------------------------- /lib/nacl_factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/lib/nacl_factory.js -------------------------------------------------------------------------------- /libsodium-1.0.18-stable.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/libsodium-1.0.18-stable.tar.gz -------------------------------------------------------------------------------- /libsodium-memory-configuration.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/libsodium-memory-configuration.patch -------------------------------------------------------------------------------- /nacl_cooked.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/nacl_cooked.js -------------------------------------------------------------------------------- /nacl_cooked_prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/nacl_cooked_prefix.js -------------------------------------------------------------------------------- /nacl_cooked_suffix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/nacl_cooked_suffix.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/package.json -------------------------------------------------------------------------------- /test/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/test/runner.html -------------------------------------------------------------------------------- /test/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tonyg/js-nacl/HEAD/test/tests.js --------------------------------------------------------------------------------