[ACCEPTED]-What kind of hash returns lower and upper case characters?-sha

Accepted answer
Score: 16

It's not true that MD5 returns only lowercase 8 characters.

A hash function returns a sequence of bytes, not 7 a string. To print out bytes, you need a 6 binary-to-text encoding. Whether there are uppercase characters 5 in the printed string depends completely 4 on which binary-to-text encoding you choose. For 3 example, Base64 uses two character cases, which 2 means you can have both uppercase and lowercase 1 characters, while Base32 uses only one case.

More Related questions