I have a binary string that I am encoding in Base 64. Now, I need to know before hand the size of the final Base 64 encoded string will be.
Is there any way to calcu
I think this formula should work:
b64len = (size * 8 + 5) / 6