Esempio n. 1
0
 public static Octets Digest(Octets o)
 {
     try
     {
         return new Octets(MD5.Create().ComputeHash(o.getBytes()));
     }
     catch (Exception) { }
     return new Octets();
 }