Csharp/C Sharp/Security/Hash — различия между версиями

Материал из .Net Framework эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 11:38, 26 мая 2010

Verify Hex Hash, Base64 Hash, Byte Hash

 

using System;
using System.Text;
class MainClass {
    public static bool VerifyHexHash(byte[] hash, string oldHashString) {
        StringBuilder newHashString = new StringBuilder(hash.Length);
        foreach (byte b in hash) {
            newHashString.AppendFormat("{0:X2}", b);
        }
        return (oldHashString == newHashString.ToString());
    }
    private static bool VerifyB64Hash(byte[] hash, string oldHashString) {
        string newHashString = Convert.ToBase64String(hash);
        return (oldHashString == newHashString);
    }
    private static bool VerifyByteHash(byte[] hash, byte[] oldHash) {
        if (hash == null || oldHash == null || hash.Length != oldHash.Length)
            return false;
        for (int count = 0; count < hash.Length; count++) {
            if (hash[count] != oldHash[count]) return false;
        }
        return true;
    }
}