1
0
mirror of https://github.com/bigchaindb/js-bigchaindb-driver.git synced 2024-06-15 17:13:18 +02:00
js-bigchaindb-driver/src/Ed25519Keypair.js
2017-09-22 10:15:02 +02:00

18 lines
674 B
JavaScript

import base58 from 'bs58'
import nacl from 'tweetnacl'
/**
* @public
* @class Keypair Ed25519 keypair in base58 (as BigchainDB expects base58 keys)
* @type {Object}
* @param {Buffer} [seed] A seed that will be used as a key derivation function
* @property {string} publicKey
* @property {string} privateKey
*/
export default function Ed25519Keypair(seed) {
const keyPair = seed ? nacl.sign.keyPair.fromSeed(seed) : nacl.sign.keyPair()
this.publicKey = base58.encode(keyPair.publicKey)
// tweetnacl's generated secret key is the secret key + public key (resulting in a 64-byte buffer)
this.privateKey = base58.encode(keyPair.secretKey.slice(0, 32))
}