libertylocked / eth-ecies

Ethereum ECIES library, for easy encryption using Ethereum keys
https://www.npmjs.com/package/eth-ecies
40 stars 18 forks source link

Can you describe your code? #3

Open clinton81 opened 6 years ago

clinton81 commented 6 years ago

I was confused with ECIES and couldn't find a suitable example. Can I ask you some questions?

libertylocked commented 6 years ago

If Alice is sending some encrypted message to Bob

Once Bob gets gy he also uses ECDH

px = ECDH(x, gy)

Then he decrypts the message, checks MAC, etc etc


There's no single standard ECIES and you can change it up a bit in your implementation if you wish, for example you can use ke = HMAC-SHA256(px, 0x01) and ka = HMAC-SHA256(px, 0x02) as KDF. (I probably should have done this but if I change the lib at this point it'll break previously encrypted messages)

Also you can potentially replace AES256-CBC with AES256-GCM, in which case you don't even need to derive authentication key or compute MAC yourself.