Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
npm install cryptorjs --save
var cryptorjs = require('cryptorjs');
var myCryptor = new cryptorjs('yourSecretKey');
var encoded = myCryptor.encode('myExampleString');
// => '37d8e07a3dddc2971f3e53b1021f51'
var decoded = myCryptor.decode('37d8e07a3dddc2971f3e53b1021f51');
// => 'myExampleString'
var cryptorjs = require('cryptorjs');
var myCryptor = new cryptorjs('yourSecretKey');
var encoded = myCryptor.encode({ a: 1, b: 2 });
// => '2183c42066819ed9184f1df116'
var decoded = myCryptor.decode('2183c42066819ed9184f1df116');
// => { a: 1, b: 2 }
For example using "camellia-256-cfb1" cipher
var cryptorjs = require('cryptorjs');
var myCryptor = new cryptorjs('yourSecretKey', 'camellia-256-cfb1');
var encoded = myCryptor.encode('myExampleString');
// => 'ac3277ba5c3f433d6b7ea70979fe55'
var decoded = myCryptor.decode('ac3277ba5c3f433d6b7ea70979fe55');
// => 'myExampleString'
You can get the list with a static method
var cryptorjs = require('cryptorjs');
cryptorjs.getCiphers();
/*=> [ 'aes-128-cbc',
'aes-128-cbc-hmac-sha1',
'aes-128-cbc-hmac-sha256',
'aes-128-ccm',
'aes-128-cfb',
'aes-128-cfb1',
'aes-128-cfb8',...]
*/
Create an hash using available hashes in your platform
var cryptorjs = require('cryptorjs');
// Check if exists MD5 hash
console.log(cryptorjs.hasHash('md5')); //=> true
cryptorjs.hash('ciao', 'md5');
/*=> '6e6bc4e49dd477ebc98ef4046c067b5f'*/
cryptorjs.hash('ciao', 'sha1');
/*=> '1e4e888ac66f8dd41e00c5a7ac36a32a9950d271'*/
Cryptorjs is open-sourced software licensed under the MIT license
[3.0.0] - 2018-09-03
createCipher
to createCipheriv
for node deprecationFAQs
Encrypt and decrypt string, number and object using a key
The npm package cryptorjs receives a total of 170 weekly downloads. As such, cryptorjs popularity was classified as not popular.
We found that cryptorjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.