Skip to content

A simple module to encode or encrypt messages with invisible zero-width characters

Notifications You must be signed in to change notification settings

0zBug/Invisible

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Invisible

A simple module to encode messages with invisible zero-width characters.

Documentation

Encode

Encodes the text into invisible characters

<string> Invisible.Encode(<string> Message)

Decode

Decodes encoded invisible messages

<string> Invisible.Decode(<string> Message)

Encrypt

Encrypts the text into invisible characters with a key

<string> Invisible.Encrypt(<string> Message, <string> Key)

Decrypt

Decrypts encrypted invisible messages with a key

<string> Invisible.Decrypt(<string> Message, <string> Key)

Example

local Hello = "Hello, World!"
local Encoded = Invisible.Encode(Hello)
local Decoded = Invisible.Decode(Encoded)

print("Original:", Hello) --> Hello, World!
print("Encoded:", Encoded) --> 󠁈󠁥󠁬󠁬󠁯󠀬󠀠󠁗󠁯󠁲󠁬󠁤󠀡
print("Decoded:", Decoded) --> Hello, World!

About

A simple module to encode or encrypt messages with invisible zero-width characters

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages