Note: This was deprecated, please use this instead: https://luatnd.github.io/caesar-password/
The simple encrypt by combining simple encoding + password 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"