Skip to content

RyannKim327/MPOP-Encryptions

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

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

Releases

No releases published

Packages

No packages published