orlp/ed25519 compiled to pure javascript using Emscripten
var lib = require('supercop.js')
var seed = lib.createSeed()
var keys = lib.createKeyPair(seed)
var msg = new Buffer('hello there')
var sig = lib.sign(msg, keys.publicKey, keys.secretKey)
console.log(lib.verify(sig, msg, keys.publicKey)) // true
var lib = require('supercop.js')
var fs = require('fs')
var seed = lib.createSeed()
var keys = lib.createKeyPair(seed)
fs.writeFileSync('keys.json', JSON.stringify({
publicKey: keys.publicKey.toString('base64'),
secretKey: keys.secretKey.toString('base64')
}))
var fs = require('fs')
var keys = require('./keys.json')
keys = {
publicKey: new Buffer(keys.publicKey, 'base64'),
secretKey: new Buffer(keys.secretKey, 'base64')
}
Generates a cryptographically-secure 32-byte seed.
Generates a keypair from the provided 32-byte seed with the following properties:
keys.publicKey
- A 32 byte public key as a buffer.keys.secretKey
- A 64 byte private key as a buffer.
Signs a given message of any length.
msg
- A buffer of any length containing a message.publicKey
- The public key to sign with as a buffer.secretKey
- The private key to sign with as a buffer.sig
- The resulting signature as a buffer of length 64 bytes.
Verifies a given signature goes with the message and key.
sig
- The signature to verify.msg
- The message that the signature represents.publicKey
- The public key used to generate the signature.valid
- A boolean telling whether the signature is valid(true
) or invalid(false
).