Skip to content

Latest commit

 

History

History
44 lines (38 loc) · 621 Bytes

ReadMe.md

File metadata and controls

44 lines (38 loc) · 621 Bytes

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