Posts by Michel Gregory • 1 point
1 post
-
-1
votes3
answers3136
viewsA: Generate 32 character MD5 password with Cryptsharp
public class Criptografia { public static string GetMD5Hash (string Valor) { MD5 md5 = new MD5CryptoServiceProvider(); return…