ecies-lite
Advanced tools
Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "ecies-lite", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "A lightweight ECIES tool implemented in pure Node.JS", | ||
@@ -14,9 +14,11 @@ "main": "index.js", | ||
"keywords": [ | ||
"Elliptic", | ||
"Curve", | ||
"Integrated", | ||
"Encryption", | ||
"Scheme", | ||
"EC", | ||
"IES" | ||
"elliptic", | ||
"curve", | ||
"encryption", | ||
"decryption", | ||
"Integrated Encryption Scheme", | ||
"IES", | ||
"ECIES", | ||
"crytography", | ||
"aes" | ||
], | ||
@@ -23,0 +25,0 @@ "author": "tibetty", |
@@ -7,3 +7,3 @@ # ecies-lite | ||
First of all, `eccrypto` is a great tool that supports many EC crypto functions. However, it was developed years ago, and the crypto library has evolved a lot since then. It seems that ECIES (Elliptic Curve Integrated Encryption Scheme) can be implemented in pure Node.JS, so I re-implemented it with the help of the latest crypto module released with Node.JS 10.x. | ||
First of all, `eccrypto` is a great tool that supports many EC crypto functions. However, it was developed years ago, and the crypto library has evolved a lot since then. It seems that ECIES (Elliptic Curve Integrated Encryption Scheme) can be implemented in pure Node.JS, so I re-implemented it with the help of the latest crypto module released with Node.JS 10.x (according to my test, it runs pretty well with any node version after 6.x). | ||
@@ -10,0 +10,0 @@ * Multiple Curves, KDF: SHA-256, HMAC: MAC-WITH-SHA-256, Multiple Cipher Algorithms |
6319