I am using the CryptSharp library to generate password in MD5. I had read that MD5 generates string with 32-character hexadecimal but is generating 34 and with several character types.
Generating in this format:
$ 1 $ gSUz3sUo $ mFPQB05MAMhFokOSydON91
Finding out that there are some different MD5 formats. It starts with those $ in the first three characters.
My code using the library is this:
public string Codifica(string senha)
{
return Crypter.MD5.Crypt(senha);
}
Does anyone know if there is any parameter in this library that can leave my password encoded in 32 characters?