As you have witnessed, I have cracked the code for the Base 64 system encryption by finding the ASCII values (thanks, google) of each individual character, and translating those into Base 2 in 8-bit clusters, meaning 8 digits of binary per character. The digit pattern is 128, 64, 32, 16, 8, 4, 2, 1.
By converting the buffered stream of binary into 6-bit clusters, which follows the same pattern above, excluding 128 and 64, and adding zeros to fill in the closest divisor by 6, you get a set of 6-bit characters which each index a specific letter/number called the Base 64 Index, each adding a new letter/number to the encoded string. The equal signs are basically fillers, being that the encoded string length MUST be divisible by 4, thus to keep a balance alive that is hard to explain in this blog.
Note: this code is a two-way code. It can be decrypted easily. And on another note, the above examples were all done in my head, except for the ASCII values. I have not yet tested the codes on a decryption yet. Feel free to test for me, for I would rather trust my own brain to further amaze people with my ability to think in the same logic as a computer.
Now, I must rest. I am hearing a ringing in my ears right now, it's time for my mind to rest.
Goodnight.
I wouldn't call base-64 encryption, though. It's just a method of converting ANSI characters into a more portable format that allows for error checking parity bits in remote transfer.