UNPKG

ethereum-encryption

Version:

Use this to encrypt, decrypt, sign and verify data with an ethereum public- or privateKey

127 lines (113 loc) 4.12 kB
import _Map from 'babel-runtime/core-js/map'; import * as ethUtil from 'ethereumjs-util'; import randombytes from 'randombytes'; import * as secp256k1 from 'secp256k1'; import ECIES from './bitcore-ecies/ecies'; import bitcore from 'bitcore-lib'; import { sha3_256 } from 'js-sha3'; import { ensureBuffer, formatAddress } from './util'; /** * get the ethereum-address by the publicKey * @param {string} publicKey * @return {string} address */ export function publicKeyToAddress(publicKey) { publicKey = secp256k1.publicKeyConvert(ensureBuffer(publicKey), false).slice(1); // slice(1) is to drop the type byte which is hardcoded as 04 ethereum return formatAddress(ethUtil.publicToAddress(publicKey).toString('hex')); } /** * creates a new privateKey * @return {string} privateKey as hex */ export function createPrivateKey() { var key = new Buffer(randombytes(32), // Ethereum requires private key to be 256 bit long 'hex').toString('hex'); return key; } /** * create the publicKey from the privateKey * @param {string} privateKey as hex * @return {string} publicKey as hex */ export function publicKeyFromPrivateKey(privateKey) { return secp256k1.publicKeyCreate(ensureBuffer(privateKey)).toString('hex'); } /** * creates a sha3_256 of the message * @param {string} message * @return {string} the hash */ export function hash(message) { return sha3_256(message); } /** * signs the sha3_256-hash with the privateKey * @param {string} privateKey * @param {string} hash * @return {string} signature as hex */ export function signHash(privateKey, hash) { var sigObj = secp256k1.sign(ensureBuffer(hash), ensureBuffer(privateKey)); return sigObj.signature.toString('hex'); } /** * check if signature of message is signed by the privateKey of the publicKey * @param {string} publicKey * @param {string} hash sha3_256-hash * @param {string} signature * @return {boolean} true if valid, false if not */ export function verifyHashSignature(publicKey, hash, signature) { return secp256k1.verify(ensureBuffer(hash), ensureBuffer(signature), ensureBuffer(publicKey)); } var _encryptWithPublicKeyEciesCache = new _Map(); // this key is used as false sample, because bitcore would crash when alice has no privateKey var _encryptWithPublicKeyDefaultKey = new bitcore.PrivateKey('52435b1ff21b894da15d87399011841d5edec2de4552fdc29c8299574436925d'); /** * encrypts the message with the publicKey * This is using aes256Cbc * @param {string} publicKey * @param {string} message * @return {string} */ export function encryptWithPublicKey(publicKey, message) { // caching if (!_encryptWithPublicKeyEciesCache.has(publicKey)) { var _alice = ECIES().privateKey(_encryptWithPublicKeyDefaultKey).publicKey(new bitcore.PublicKey(publicKey)); _encryptWithPublicKeyEciesCache.set(publicKey, _alice); } var alice = _encryptWithPublicKeyEciesCache.get(publicKey); var encrypted = alice.encrypt(message); var ret = encrypted.toString('hex'); return ret; } var _decryptWithPrivateKeyEciesMap = new _Map(); /** * decrypt the encrypted message with the privateKey * @param {string} privateKey * @param {string} encrypted * @return {string} */ export function decryptWithPrivateKey(privateKey, encrypted) { // caching if (!_decryptWithPrivateKeyEciesMap.has(privateKey)) { var privKey = new bitcore.PrivateKey(privateKey); var _alice2 = ECIES().privateKey(privKey); _decryptWithPrivateKeyEciesMap.set(privateKey, _alice2); } var alice = _decryptWithPrivateKeyEciesMap.get(privateKey); var decryptMe = new Buffer(encrypted, 'hex'); var decrypted = alice.decrypt(decryptMe); var ret = decrypted.toString(); return ret; } export default { publicKeyToAddress: publicKeyToAddress, createPrivateKey: createPrivateKey, publicKeyFromPrivateKey: publicKeyFromPrivateKey, hash: hash, signHash: signHash, verifyHashSignature: verifyHashSignature, encryptWithPublicKey: encryptWithPublicKey, decryptWithPrivateKey: decryptWithPrivateKey };