eccrypto/README.md

88 lines
3.8 KiB
Markdown
Raw Normal View History

2014-12-21 17:46:37 +00:00
# eccrypto [![Build Status](https://travis-ci.org/bitchan/eccrypto.svg?branch=master)](https://travis-ci.org/bitchan/eccrypto)
JavaScript Elliptic curve cryptography library for both browserify and node.
2014-12-21 19:39:09 +00:00
## Motivation
2015-01-13 19:39:37 +00:00
There is currently no any isomorphic ECC library which provides ECDSA, ECDH and ECIES for both Node.js and Browser and uses the fastest implementation available (e.g. [secp256k1-node](https://github.com/wanderer/secp256k1-node) is much faster than other libraries but can be used only on Node.js). So `eccrypto` is an attempt to create one.
2014-12-21 19:39:09 +00:00
2014-12-28 16:16:40 +00:00
## Implementation details
With the help of browserify `eccrypto` provides different implementations for Browser and Node.js with the same API. Because WebCryptoAPI defines asynchronous promise-driven API, implementation for Node needs to use promises too.
2014-12-21 19:39:09 +00:00
2014-12-28 11:02:28 +00:00
* Use Node.js crypto module/library bindings where possible
2014-12-21 19:39:09 +00:00
* Use WebCryptoAPI where possible
* Promise-driven API
2014-12-31 11:22:16 +00:00
* Only secp256k1 curve, only SHA-512 (KDF), HMAC-SHA-256 (HMAC) and AES-256-CBC for ECIES
2014-12-21 19:39:09 +00:00
2014-12-28 16:16:40 +00:00
### Native crypto API limitations
2014-12-21 19:39:09 +00:00
2014-12-28 16:16:40 +00:00
#### crypto
2014-12-21 19:39:09 +00:00
2014-12-21 19:44:45 +00:00
ECDH only works in Node 0.11+ (see https://github.com/joyent/node/pull/5854), ECDSA is only supported when keys are in PEM format (see https://github.com/joyent/node/issues/6904) and ECIES is not supported at all.
2014-12-21 19:39:09 +00:00
2014-12-28 16:16:40 +00:00
#### WebCryptoAPI
2014-12-21 19:39:09 +00:00
2014-12-21 19:45:46 +00:00
ECDSA and ECDH are supported in Chrome [only on Windows](https://sites.google.com/a/chromium.org/dev/blink/webcrypto#TOC-Supported-algorithms-as-of-Chrome-41-) (see also [bug 338883](https://code.google.com/p/chromium/issues/detail?id=338883)), aren't supported by Firefox (fixed only in 36.0+, see [bug 1034854](https://bugzilla.mozilla.org/show_bug.cgi?id=1034854)) and ECIES is not defined at all in WebCryptoAPI draft. Also WebCryptoAPI [currently defines](http://www.w3.org/TR/WebCryptoAPI/#EcKeyGenParams-dictionary) only curves recommended by NIST which means that secp256k1 is not supported (see also: [[1]](http://lists.w3.org/Archives/Public/public-webcrypto-comments/2013Dec/0001.html), [[2]](https://bugzilla.mozilla.org/show_bug.cgi?id=1051509)).
2014-12-21 19:39:09 +00:00
2014-12-28 11:02:28 +00:00
So we use [seck256k1](https://www.npmjs.com/package/secp256k1) library in Node for ECDSA, [elliptic](https://www.npmjs.com/package/elliptic) in Browser for ECDSA and ECDH and implement ECIES manually with the help of native crypto API.
2014-12-21 19:39:09 +00:00
2014-12-28 16:16:40 +00:00
## Possible future goals
2014-12-21 17:46:37 +00:00
2014-12-28 16:16:40 +00:00
* Support other curves/KDF/MAC/symmetric encryption schemes
## Usage
2014-12-21 19:39:09 +00:00
2015-01-13 12:11:53 +00:00
### ECDSA
2014-12-21 17:46:37 +00:00
```js
2014-12-28 11:02:28 +00:00
var crypto = require("crypto");
2014-12-21 17:46:37 +00:00
var eccrypto = require("eccrypto");
2014-12-28 11:04:28 +00:00
2014-12-28 11:02:28 +00:00
var privateKey = crypto.randomBytes(32);
var publicKey = eccrypto.getPublic(privateKey);
2014-12-28 11:04:28 +00:00
var str = "msg to sign";
2015-01-13 12:11:53 +00:00
// Always hash you message to sign!
2014-12-28 11:02:28 +00:00
var msg = crypto.createHash("sha256").update(str).digest();
2014-12-28 11:04:28 +00:00
2014-12-28 11:02:28 +00:00
eccrypto.sign(privateKey, msg).then(function(sig) {
console.log("signed:", sig);
eccrypto.verify(publicKey, msg, sig).then(function() {
console.log("verified");
});
});
2014-12-21 17:46:37 +00:00
```
2015-01-13 12:11:53 +00:00
### ECDH
```js
2015-01-13 19:39:37 +00:00
var crypto = require("crypto");
var eccrypto = require("eccrypto");
var privateKeyA = crypto.randomBytes(32);
var publicKeyA = eccrypto.getPublic(privateKeyA);
var privateKeyB = crypto.randomBytes(32);
var publicKeyB = eccrypto.getPublic(privateKeyB);
eccrypto.derive(privateKeyA, publicKeyB).then(function(sharedKey1) {
eccrypto.derive(privateKeyB, publicKeyA).then(function(sharedKey2) {
console.log("Both shared keys are equal:", sharedKey1, sharedKey2);
});
});
2015-01-13 12:11:53 +00:00
```
### ECIES
```js
```
2014-12-21 17:46:37 +00:00
## License
eccrypto - JavaScript Elliptic curve cryptography library
Written in 2014 by Kagami Hiiragi <kagami@genshiken.org>
To the extent possible under law, the author(s) have dedicated all copyright and related and neighboring rights to this software to the public domain worldwide. This software is distributed without any warranty.
You should have received a copy of the CC0 Public Domain Dedication along with this software. If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.