Is a base64 encoded string unique?
Two years late, but here we go: The short answer is yes, unique binary/hex values will always encode to a unique base64 encoded string. BUT, multiple base64 encoded strings may represent a single binary/hex value. This is because hex bytes are not aligned with base64 ‘digits’. A single hex byte is represented by 8 bits … Read more