
This block encrypts a string and returns it in base64.
"hello world" > "aGVsbG8gd29ybGQ ="

This block decrypts a string that was in base64.
"aGVsbG8gd29ybGQ ="
>"hello world"
This block encrypts a string depending on how you configure it. The encryption alphabet has to be 2, 4, 8, 16, 32, 64, 128 ... characters, they have to be different, the fewer characters you have, the more your encrypted string will be. So that the block is not complicated, I put some default ones
01
01234567
qwertyuiopasdfghjklñzxcvbnm,.-_
Decrypt what had been encrypted with basecode. it has to have the same encryption alphabet






All these encryptions can only be encrypted. They cannot be decrypted. They would serve if you have a game with username and password, when the account is created you encrypt the password and save it later when you put the password again you encrypt the one you just put and compare it with the saved one, if they are the same it is the same user