2017-01-24 11:41:06 +01:00
2020-05-04 21:12:44 +02:00
2017-06-12 10:31:43 +02:00
2020-05-04 20:52:17 +02:00
2020-05-04 20:49:21 +02:00
2020-05-04 21:04:41 +02:00
2020-05-04 21:17:27 +02:00
2017-06-19 21:44:32 +02:00
2020-05-04 21:13:24 +02:00
2017-01-24 11:41:06 +01:00
2020-03-04 14:52:37 +01:00
2020-05-04 20:44:56 +02:00
2017-11-19 13:16:35 +01:00
2017-01-24 11:41:06 +01:00
2017-06-19 22:39:11 +02:00

sodium-javascript

WIP - a pure javascript version of sodium-native. Based on tweetnacl

npm install sodium-javascript

Usage

var sodium = require('sodium-javascript')

var key = new Buffer(sodium.crypto_secretbox_KEYBYTES)
var nonce = new Buffer(sodium.crypto_secretbox_NONCEBYTES)

sodium.randombytes_buf(key)
sodium.randombytes_buf(nonce)

var message = new Buffer('Hello, World!')
var cipher = new Buffer(message.length + sodium.crypto_secretbox_MACBYTES)

sodium.crypto_secretbox_easy(cipher, message, nonce, key)

console.log('Encrypted:', cipher)

var plainText = new Buffer(cipher.length - sodium.crypto_secretbox_MACBYTES)

sodium.crypto_secretbox_open_easy(plainText, cipher, nonce, key)

console.log('Plaintext:', plainText.toString())

API

See sodium-native. This is a work in progress so all functions are not implemented yet.

License

MIT

S
Description
Pure Javascript version of sodium-native
Readme
2.6 MiB
Languages
JavaScript 100%