Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<img src="http://bitcore.io/css/images/module-ecies.png" alt="bitcore ecies" height="35">
# ECIES for bitcore
# ECIES for Bitcore

[![NPM Package](https://img.shields.io/npm/v/bitcore-ecies.svg?style=flat-square)](https://www.npmjs.org/package/bitcore-ecies)
[![Build Status](https://img.shields.io/travis/bitpay/bitcore-ecies.svg?branch=master&style=flat-square)](https://travis-ci.org/bitpay/bitcore-ecies)
Expand All @@ -13,6 +12,16 @@ Credit to [@ryanxcharles][ryan] for the original implementation.

## Getting started

```sh
npm install bitcore-lib
npm install bitcore-ecies
```

```sh
bower install bitcore-lib
bower install bitcore-ecies
```

ECIES will allow to securely encrypt and decrypt messages using ECDSA key pairs (bitcoin cryptography).

```javascript
Expand Down
2 changes: 2 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,14 @@ ECIES is implemented as a separate module and you must add it to your dependenci
For node projects:

```bash
npm install bitcore-lib --save
npm install bitcore-ecies --save
```

For client-side projects:

```bash
bower install bitcore-lib --save
bower install bitcore-ecies --save
```

Expand Down