Base64 is a easy method to encode binary into a sequence of printable ASCII characters. This is often used when you need to transmit data, like files, over mediums that only handle text-based protocols. Essentially, it takes the input data and creates a new string which can then be decoded back to its starting form. Don't let the technical phras… Read More