bitmessage-js/lib/crypto.js

25 lines
554 B
JavaScript
Raw Normal View History

2014-12-13 19:56:14 +01:00
/**
2014-12-26 17:47:25 +01:00
* Isomorphic Bitmessage crypto module. Reexport platform-specific
* functions and also export some common routines.
2014-12-18 17:47:18 +01:00
* @module bitmessage/crypto
2014-12-13 19:56:14 +01:00
*/
"use strict";
var eccrypto = require("eccrypto");
2014-12-26 17:47:25 +01:00
var cryptoPlatform = require("./crypto-platform");
2014-12-26 18:17:01 +01:00
2014-12-26 17:47:25 +01:00
Object.keys(cryptoPlatform).forEach(function(key) {
exports[key] = cryptoPlatform[key];
});
/**
* Generate new random private key.
* @return {Buffer} New private key.
*/
exports.getPrivate = function() {
return cryptoPlatform.randomBytes(32);
};
exports.getPublic = eccrypto.getPublic;