Socket
Socket
Sign inDemoInstall

chacha-native

Package Overview
Dependencies
15
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    chacha-native

native chacha20/poly1305 bindings in nodejs


Version published
Weekly downloads
1.4K
increased by31.75%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

chacha native

Build Status

Node bindings for Chacha20/poly1305, api is identical to my pure JavaScript library, Chacha20 is based on this implementation with Poly1305 based on poly1305-donna by way of libressl. By default it implements the IETF version of the chacha20 poly1305 aead, but the legacy method does the version compatibale with borringssl and others.

API

var chacha = require('chacha-native');

ChaCha20 Poly1305

var cipher =  chacha.createCipher(key, nonce);
var decipher =  chacha.createDecipher(key, nonce);

Create a cipher object by passing it a 256 bit key and 96 bit nonce, API is identical to crypto.createCipheriv()/createDecipheriv in node >= 11 with a gcm mode, in other words, e.g.

cipher.setAAD(nonencrypteddata);// must be called before data
var tag = cipher.getAuthTag();// must be called after finish or end

decipher.setAAD(nonencrypteddata);// must be called before data
decipher.setAuthTag(tag);// must be called before data

decipher with throw if you don't set a tag or the tag doesn't match. See the node docs for more info (the iv length for gcm is also 96 bit fyi).

ChaCha20

var cipher =  chacha.chacha(key, nonce);

The API is identical to a cipher/decipher object in node >= 10. Encryption and decryption are the same.

Poly1305

var hmac =  chacha.createHmac(key);

API is identical to an hmac in node, so it's a stream with update and digest methods.

Legacy Aead

A variant version of the aead that is compatible with boringssl.

var cipher =  new chacha.AeadLegacy(key, nonce);
var decipher =  new chacha.AeadLegacy(key, nonce, true);

The third parameter is whether it should decipher, otherwise identical to createCipher/createDecipher. Doesn't implement variable length tags.

FAQs

Last updated on 12 Dec 2019

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