Hashing algorithms that allows you to encypt your strings
npm install encryptdata!logo
A lightweight package that allows you to encrypt or decrypt your strings or data.
Install EncryptData with npm
``bash`
npm install encryptdata
| Function | Return type | Parameters |
| :-------- | :------- | :------------------------- |
| InOrderHash | string | Key?: string |DoubleDisplace
| | string | Flip?, Randomize?: Boolean |CaesarCipher
| | string | Step?: Number|HexShift
| | string | Shift?: Boolean |
| string | Step?: NumberMore to be added soon
Usage/Examples
`javascript
const encrypter = require("encryptdata")let string = new encrypter.Encrypt("sample text!").CaesarCipher(2)
console.log(string)
Returns:
>> tbnqmf ufyu!
let string2 = new encrypter.Decrypt(string).CaesarCipherRevert(2)
console.log(string2)
Returns:
>> sample text!
``- @DHIBAID