Skip to content

lakefox/cipherHash

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

cipherHash

Custom Encryption Algrothim

How to Install

npm i cipherhash

How to Use

// Load the module
var c = require("cipherhash");

// Encrypt a String

c.cipherHash("message", "password");

>>> "30A1Dd4XQawUdz"
  
// Decrypt a String

c.UnCipherHash("30A1Dd4XQawUdz", "password");

>>> "message"

// Get a Base64 Hash of a String

c.hash("string");

>>> "473287f8298dba7163a897908958f7c0eae733e25d2e027992ea2edc9bed2fa8"

About

Custom Encryption Algrothim Used in IXO.js

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published