mxn0 encode with password
The simple encode method:
-
phrase was split into words by space seperator:
"hello world this is an example"
=>['hello', 'world', 'this', 'is', 'an', 'example']
-
words will be encoded by a customized caesar cypher encoding:
supported_chars = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz';
password = "your free password"
-
encode by base64:
'.....'