Exemple #1
0
 public void ConvertToUpperCasing()
 {
     if (!string.IsNullOrEmpty(MD5))
     {
         MD5 = MD5.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA1))
     {
         SHA1 = SHA1.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA256))
     {
         SHA256 = SHA256.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA384))
     {
         SHA384 = SHA384.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA512))
     {
         SHA512 = SHA512.ToUpper();
     }
     if (!string.IsNullOrEmpty(CRC32))
     {
         CRC32 = CRC32.ToUpper();
     }
     if (!string.IsNullOrEmpty(RIPEMD160))
     {
         RIPEMD160 = RIPEMD160.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA3_256))
     {
         SHA3_256 = SHA3_256.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA3_384))
     {
         SHA3_384 = SHA3_384.ToUpper();
     }
     if (!string.IsNullOrEmpty(SHA3_512))
     {
         SHA3_512 = SHA3_512.ToUpper();
     }
 }