Socket
Socket
Sign inDemoInstall

cryptopeer-crypto

Package Overview
Dependencies
16
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    cryptopeer-crypto

Crypto module for CryptoPeer


Version published
Weekly downloads
14
increased by600%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Build Status

Introduction

cryptopeer-crypto is an ECMA2015 (ES6) crypto library for Node.js built on top of sodium and node-rsa

Install

$ npm install cryptopeer-crypto

Usage

const crypto = require('cryptopeer-crypto');

ECDH with new keys

let alice = new crypto.ECDH(),
    bob = new crypto.ECDH();

let aliceShared = alice.computeSecret(bob.publicKeyBuffer, 'base64'),
    bobShared = bob.computeSecret(alice.publicKeyBuffer, 'base64');

console.log(aliceShared === bobShared);

ECDH from existing privateKey

let alice = new crypto.ECDH(),
    mallory = crypto.ECDH.fromPrivateKey(alice.privateKey, 'base64');

console.log(alice.publicKey === mallory.publicKey);

RSA

let alice = new crypto.RSA(512),
    bob = new crypto.RSA(), // keyLength 512 is set to defalult
    message = 'Hello Bob!';

alice.setPublicKey(bob.publicKey);

let encrypted = alice.encrypt(message),
    decrypted = bob.decrypt(encrypted);

console.log(decrypted === message);

Method encrypt expects String, Number, Object, Array, null or can be empty.

ChaCha20

const ChaCha20 = crypto.ChaCha20;

let message = 'Super secret message',
    key = ChaCha20.getKey(),
    nonce = ChaCha20.getNonce();

let encrypted = ChaCha20.encrypt(message, nonce, key),
    decrypted = ChaCha20.decrypt(encrypted, nonce, key).toString('utf8');

console.log(decrypted === message);

ChaCha20 with ECDH

const ChaCha20 = crypto.ChaCha20,
      ECDH = crypto.ECDH;

let message = 'Hello Bob!';

let aliceSecret = alice.computeSecret(bob.publicKey),
    aliceKey = ChaCha20.getKey(aliceSecret),
    nonce = ChaCha20.getNonce();

let encrypted = ChaCha20.encrypt(message, nonce, aliceKey);

let bobSecret = bob.computeSecret(alice.publicKey),
    bobKey = ChaCha20.getKey(bobSecret);

let decrypted = ChaCha20.decrypt(encrypted, nonce, bobKey).toString('utf8');

console.log(decrypted === message);

Method encrypt expects Buffer, String. Method decrypt expects Buffer, encoded String.

With Promises

All methods has been promisified already. You can call them with *Async ending. e.g. alice.computeSecretAsync(), ChaCha20.encryptAsync() and so on.

TODO

  • AES256 encrypt/decrypt

Test

npm test

Thanks

Thanks to ecdh-sodium for inspiration.

License

The MIT License (MIT)

Copyright (c) 2016 Michael Yali

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Last updated on 23 Feb 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc