Skip to content

Crypto.js helper - for lazy people (like me) 🔐 🔑

Notifications You must be signed in to change notification settings

msfidelis/take-my-hash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Take my Hash Build Status npm version

Crypto.js helper - for lazy people (like me)

Quickstart

npm install --save take-my-hash
const tmh = require('take-my-hash');

AES

let hash = tmh.AESEncrypt('my text', 'my key 123');
let rawText = tmh.AESDecrypt(hash, 'my key 123');

console.log(hash, rawText);

MD5

let hash = tmh.md5('my text');

SHA1

let hash = tmh.sha1('my text');

SHA224

let hash = tmh.sha224('my text');

SHA256

let hash = tmh.sha256('my text');

SHA384

let hash = tmh.sha384('my text');

SHA3

let hash = tmh.sha3('my text');

SHA512

let hash = tmh.sha512('my text');

About

Crypto.js helper - for lazy people (like me) 🔐 🔑

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published