C# 클래스 Meek.Security.Cryptography.MD5CryptoServiceProvider

MD5 Crypto Service Provider
파일 보기 프로젝트 열기: klintz/Meek 1 사용 예제들

공개 메소드들

메소드 설명
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

메소드 상세

ComputeHash() 공개 메소드

Compute Hash from a specified stream
public ComputeHash ( Stream stream ) : byte[]
stream Stream stream
리턴 byte[]

ComputeHash() 공개 메소드

Compute Hash from a specified stream and a salt
public ComputeHash ( Stream stream, byte salt ) : byte[]
stream Stream stream
salt byte salt
리턴 byte[]

ComputeHash() 공개 메소드

Compute Hash
public ComputeHash ( byte data ) : byte[]
data byte byte[] to hash
리턴 byte[]

ComputeHash() 공개 메소드

Compute Hash with a specified salt
public ComputeHash ( byte data, byte salt ) : byte[]
data byte byte[] to hash
salt byte salt
리턴 byte[]