Identifying hash type
#5
Cool, glad that's what it was.

By the way, you're not hex-dumping the base64-encoded string; you're hex-encoding the base64 decoded string. Remember that hashes are binary, so we have to have some way of representing them in a human-readable format. The most common way we do this is encoding with hex or base64.

base64 encoding the raw hash value is common practice with applications written in languages that don't provide a simple hashing API. And oftentimes people feel like if they use an alternate alphabet or remove padding characters that it provides some additional security. It doesn't.


Messages In This Thread
Identifying hash type - by wflme - 01-14-2015, 10:52 PM
RE: Identifying hash type - by forumhero - 01-14-2015, 11:59 PM
RE: Identifying hash type - by epixoip - 01-15-2015, 12:13 AM
RE: Identifying hash type - by wflme - 01-15-2015, 10:49 PM
RE: Identifying hash type - by epixoip - 01-16-2015, 09:12 AM
RE: Identifying hash type - by undeath - 01-17-2015, 12:07 PM