mpop-encryptions
v0.0.1
Published
A compillation of encryption that I know.
Downloads
6
Maintainers
Readme
NPM Encryption
MPOP Reverse II
Encrypt .encrypt(string_data, encryption)
Sample Code
const a = require("mpop-encryptions")
let data = a.encrypt("a", a.BINARY)
console.log(data)
Sample Output:
{
"data": "01100001 "
}
Decrypt .encrypt(encrypted_data, encryption)
Sample Code
const a = require("mpop-encryptions")
let data = a.encrypt("01100001", a.BINARY)
console.log(data)
Sample Output:
{
"data": "a "
}
Encryption Keys
- BINARY
- OCTAL
- DECIMAL
- HEX
- BASE64
- MORSECODE