C# Class Meek.Security.Cryptography.MD5CryptoServiceProvider

MD5 Crypto Service Provider
Afficher le fichier Open project: klintz/Meek Class Usage Examples

Méthodes publiques

Méthode Description
ComputeHash ( Stream stream ) : byte[]

Compute Hash from a specified stream

ComputeHash ( Stream stream, byte salt ) : byte[]

Compute Hash from a specified stream and a salt

ComputeHash ( byte data ) : byte[]

Compute Hash

ComputeHash ( byte data, byte salt ) : byte[]

Compute Hash with a specified salt

Method Details

ComputeHash() public méthode

Compute Hash from a specified stream
public ComputeHash ( Stream stream ) : byte[]
stream Stream stream
Résultat byte[]

ComputeHash() public méthode

Compute Hash from a specified stream and a salt
public ComputeHash ( Stream stream, byte salt ) : byte[]
stream Stream stream
salt byte salt
Résultat byte[]

ComputeHash() public méthode

Compute Hash
public ComputeHash ( byte data ) : byte[]
data byte byte[] to hash
Résultat byte[]

ComputeHash() public méthode

Compute Hash with a specified salt
public ComputeHash ( byte data, byte salt ) : byte[]
data byte byte[] to hash
salt byte salt
Résultat byte[]