bitcore-ecies icon indicating copy to clipboard operation
bitcore-ecies copied to clipboard

A module for bitcore that implements the Elliptic Curve Integrated Encryption Scheme (ECIES).

Results 7 bitcore-ecies issues
Sort by recently updated
recently updated
newest added

Try this: var alicePrivateKey = new bitcore.PrivateKey(); var bobPrivateKey = new bitcore.PrivateKey(); var data = new Buffer('The is a raw data example'); var cypher1 = ECIES().privateKey(alicePrivateKey).publicKey(bobPrivateKey.publicKey); var encrypted = cypher1.encrypt(data);...

I'd like to encrypt a message and send it to the receiver, without the receiver having to know the sender's pubkey. That is, all we know is Bob's pub key...

Functions and branches in aescbc.js and cdb.js are not covered in tests: | File | Statements | Branches | Functions | Lines | | --- | --- | --- |...

JSDoc documentation for many of the methods is missing, and currently not listed in bitcore API docs.

See: https://www.iacr.org/archive/pkc2003/25670211/25670211.pdf (ECIES section) suggested by @juli