close
The Wayback Machine - https://web.archive.org/web/20200910040851/https://github.com/github/tweetsodium
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

tweetsodium Build Status

This library implements libsodium's sealed boxes using the tweetnacl-js and blakejs libraries.

Usage

const nacl = require('tweetnacl')
const sodium = require('tweetsodium')

// generate public key to use for encryption and coresponding secret key to use
// for decryption
const keyPair = nacl.box.keyPair()

// encrypts message string using public key
function encrypt(message) {
    const encoder = new TextEncoder()
    const messageBytes = encoder.encode(message)

    return sodium.seal(messageBytes, keyPair.publicKey)
}

// decrypts message using secret key
function decrypt(ciphertext) {
    const encoder = new TextEncoder()
    const ciphertextBytes = encoder.encode(ciphertext)

    return sodium.sealOpen(ciphertextBytes, keyPair.publicKey, keyPair.secretKey)
}
You can’t perform that action at this time.