Using different encoder/decoder to convert binary to base64

77 Views Asked by At

Will using one type of encoder, to encode a binary message to base64(like the default one with jvm) and another(like apache commons codec) to decode this string to binary affect consistency of results? Or the type of encoders/decoders don't matter?

1

There are 1 best solutions below

4
On

It doesn't matter. Base64 is a standard. Any compliant implementation will produce the same results.