2017-01-24 11:41:06 +01:00
2020-06-17 17:27:28 +02:00
2017-06-12 10:31:43 +02:00
2020-06-17 17:27:28 +02:00
2020-06-17 17:27:28 +02:00
2020-06-16 14:17:31 +02:00
2020-06-16 14:16:50 +02:00
2020-06-16 15:55:26 +02:00
2017-06-19 21:44:32 +02:00
2020-06-17 13:10:21 +02:00
2017-01-24 11:41:06 +01:00
2020-06-18 11:35:47 +02: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%