remove unwanted comment

This commit is contained in:
Manuel Araoz 2014-10-21 11:15:12 -03:00
parent acd86fdc43
commit 50d36d5b30
1 changed files with 0 additions and 1 deletions

View File

@ -10,7 +10,6 @@
var key = bitcore.Key.generateSync();
console.log('Private key: ' + key.private.toString('hex'));
console.log('Public key: ' + key.public.toString('hex'));
/* Crash happens here */
var message = new Buffer('This is a message to be encrypt');
console.log('Message: "' + message.toString() + '"');
var encrypted = bitcore.ECIES.encrypt(key.public, message);