Ejemplo n.º 1
0
 public static string MD5(Stream value)
 {
     return(CreateHash(
                HashFactory.Create(HashingAlgorithm.MD5),
                value));
 }
Ejemplo n.º 2
0
 public static string SHA256(Stream value)
 {
     return(CreateHash(
                HashFactory.Create(HashingAlgorithm.SHA256),
                value));
 }
Ejemplo n.º 3
0
 public static string SHA1(byte[] value)
 {
     return(CreateHash(
                HashFactory.Create(HashingAlgorithm.SHA1),
                value));
 }