23 Ağustos 2017 Çarşamba

SHA256 Sınıfı

Giriş
Şu satırı dahil ederiz.
using System.Security.Cryptography;
Metodun amacı girdiyi 256 bit çıktı şeklinde hash'lemek. Şöyledir.
hash = sha256(input) # 256bit
ComputeHash metodu
Şöyle yaparız.
var hash = sha256.ComputeHash(Encoding.UTF8.GetBytes("70c3bdc5ceeac673"));
Şöyle yaparız.
string file = ...;
byte[] byte = File.ReadAllBytes(file);
byte[] sha256 = SHA256.Create().ComputeHash(bytes);
Create metodu
Şöyle yaparız.
var sha256 = SHA256.Create()

Hiç yorum yok:

Yorum Gönder