Text-Encryption-Tool

An Open-source Discord Mini-Games Package

View the Project on GitHub

Decryption

Importing

const {decrypt} = require('text-encryption-tool')

Decrypting

const text = "hMGbwUXZwYHICZ3TgADITRGITRWQ5BCLhYzZnN2V";
const key = "==QbsNGcuhUZnh2aUNXavFGQCdWZ290VjxWQ1l3UkZDM";
const output = decrypt(text,key); // Decrypting the Text.
console.log(output); // logging the output.

Example Output

{
   text: "Hello!, This is a npm package!"
}