C# 클래스 Renci.SshNet.Security.Cryptography.HMACSHA256

Computes a Hash-based Message Authentication Code (HMAC) by using the SHA256 hash function.
상속: System.Security.Cryptography.HMACSHA256
파일 보기 프로젝트 열기: sshnet/SSH.NET

공개 메소드들

메소드 설명
HMACSHA256 ( byte key ) : System.Security.Cryptography

Initializes a HMACSHA256 with the specified key.

HMACSHA256 ( byte key, int hashSize ) : System.Security.Cryptography

Initializes a HMACSHA256 with the specified key and size of the computed hash code.

보호된 메소드들

메소드 설명
HashFinal ( ) : byte[]

Finalizes the hash computation after the last data is processed by the cryptographic stream object.

메소드 상세

HMACSHA256() 공개 메소드

Initializes a HMACSHA256 with the specified key.
public HMACSHA256 ( byte key ) : System.Security.Cryptography
key byte The key.
리턴 System.Security.Cryptography

HMACSHA256() 공개 메소드

Initializes a HMACSHA256 with the specified key and size of the computed hash code.
public HMACSHA256 ( byte key, int hashSize ) : System.Security.Cryptography
key byte The key.
hashSize int The size, in bits, of the computed hash code.
리턴 System.Security.Cryptography

HashFinal() 보호된 메소드

Finalizes the hash computation after the last data is processed by the cryptographic stream object.
protected HashFinal ( ) : byte[]
리턴 byte[]