127 /// @brief Deletes whatever Binary points at and assigns Size to 0.
128 /// @param NewSize If you don't want to just clear the buffer, but rather want to set size to a value and set a new size, you can do that with this
203 /// @brief From an encoded string get the exact size of the decode binary in 8bit bytes
204 /// @param EncodedString The base64 encoded string
205 /// @return This returns the exact length of the result once it is decoded. The binary is about 3/4 of the base64 size, but that can be off by just enough to make memory allocation an issue if not calcualated carefully.
208 /// @brief From the size of a binary get the exact size in 8bit bytes.
209 /// @param Length The bytelength of the item before Base64 encoding.
210 /// @return This returns the exact length of the result once it is encoded. The Base64 is about 133% of the binary size, but that can be off by just enough to make memory allocation an issue if not calcualated carefully.