1.1.0 • Published 1 year ago

@rabbit-company/xchacha20 v1.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

XChaCha20-JS

XChaCha20 implementation in JavaScript (ES6).

This library will auto generate random nonce and append it to the encrypted message.

Usage

1. Download library

npm i --save @rabbit-company/xchacha20

2. Import library

import XChaCha20 from "@rabbit-company/xchacha20";

3. Encryption

XChaCha20.encrypt(message, secretKey);

4. Decryption

XChaCha20.decrypt(message, secretKey);