xxtea

0.2.3 • Public • Published

xxtea

npm download npm version License

Pure javascript xxtea encryption algorithm for Node.js.

Install

  npm install xxtea

Usage

var xxtea = require('xxtea');
var pass  = 'password';
// to encrypt
var encrypted = xxtea.encrypt('data to encrypt', pass);

// to decrypt
var decrypted = xxtea.decrypt(encrypted, pass);

API

xxtea

  • decrypt(string, password)
    • string - required - the data to be decrypted.
    • password - required - the password to be used in decryption.
  • encrypt(string, password)
    • string - required - the data to be encrypted.
    • password - required - the password to be used in encryption.

Package Sidebar

Install

npm i xxtea

Weekly Downloads

103

Version

0.2.3

License

MIT

Unpacked Size

7.31 kB

Total Files

8

Last publish

Collaborators

  • h0rn3t
  • gpedro