Does MD5 and SHA only contain alphanumeric characters? (i.e., from A to Z and 0 to 9, or do they exclude some characters?)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
MD5 and SHA hashes in raw form are binary, however their common representation is a hex-encoded string, which contains characters
[a-fA-F0-9].So if this is what you meant, then characters G-Z, g-z are “excluded”.
Another, less common, representation is Base64 encoding [0-9a-zA-Z+/].