Csharp/C Sharp/Security/KeyedHashAlgorithm

Материал из .Net Framework эксперт
Версия от 11:38, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

KeyedHashAlgorithm: Key

 
using System;
using System.IO;
using System.Text;
using System.Security.Cryptography;
class MainClass {
    public static void Main(string[] args) {
        byte[] key = Encoding.Unicode.GetBytes(args[2]);
        using (KeyedHashAlgorithm hashAlg = KeyedHashAlgorithm.Create(args[1])) {
            hashAlg.Key = key;
            using (Stream file = new FileStream(args[0], FileMode.Open, FileAccess.Read)) {
                byte[] hash = hashAlg.ruputeHash(file);
                Console.WriteLine(BitConverter.ToString(hash));
            }
        }
    }
}