2.3.0 • Published 10 months ago
@rabbit-company/xchacha20 v2.3.0
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);