JavaScript Elliptic curve cryptography library compatible with PyBitmessage
Go to file
Kagami Hiiragi 09f6524f1b 0.1.0 2014-12-25 19:06:13 +03:00
.gitignore Initial commit 2014-12-21 20:46:37 +03:00
.jshintignore Initial commit 2014-12-21 20:46:37 +03:00
.jshintrc Initial commit 2014-12-21 20:46:37 +03:00
.npmignore Initial commit 2014-12-21 20:46:37 +03:00
.travis.yml Initial commit 2014-12-21 20:46:37 +03:00
COPYING Initial commit 2014-12-21 20:46:37 +03:00
README.md Typos 2014-12-22 00:24:51 +03:00
browser.js Browser ECDSA with the help of elliptic 2014-12-25 18:45:43 +03:00
index.js Browser ECDSA with the help of elliptic 2014-12-25 18:45:43 +03:00
karma.conf.js Setup karma 2014-12-21 21:05:05 +03:00
package.json 0.1.0 2014-12-25 19:06:13 +03:00
test.js Fix test 2014-12-25 19:01:52 +03:00

README.md

eccrypto Build Status

JavaScript Elliptic curve cryptography library for both browserify and node.

Motivation

There is currently no any isomorphic ECC library which provides ECDSA, ECDH and ECIES for both Node.JS and Browser. So eccrypto is an attempt to create one. Current goals:

  • Implement ECDSA
  • Implement ECDH
  • Implement ECIES
  • Support secp256k1 curve, HMAC-SHA256 for ECDH and AES-256-CBC for ECIES

Implementation details:

  • Use Node.JS crypto module/library bindings where possible
  • Use WebCryptoAPI where possible
  • Promise-driven API

Possible future goals:

  • Support other curves/KDF/MAC/symmetric encryption schemes

Native crypto API limitations

crypto

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.

WebCryptoAPI

ECDSA and ECDH are supported in Chrome only on Windows (see also bug 338883), aren't supported by Firefox (fixed only in 36.0+, see bug 1034854) and ECIES is not defined at all in WebCryptoAPI draft. Also WebCryptoAPI currently defines only curves recommended by NIST which means that secp256k1 is not supported (see also: [1], [2]).

So we use seck256k1 library in Node for ECDSA, elliptic in Browser for ECDSA and implement ECDH and ECIES manually with the help of native crypto API.

Usage

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.

var eccrypto = require("eccrypto");

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/.