다음을 통해 공유


IncrementalHash.CreateHMAC 메서드

정의

오버로드

CreateHMAC(HashAlgorithmName, Byte[])

hashAlgorithm지정된 해시 알고리즘과 key지정된 키를 사용하여 해시 기반 HMAC(메시지 인증 코드) 알고리즘에 대한 IncrementalHash 만듭니다.

CreateHMAC(HashAlgorithmName, ReadOnlySpan<Byte>)

hashAlgorithm지정된 해시 알고리즘과 key지정된 키를 사용하여 해시 기반 HMAC(메시지 인증 코드) 알고리즘에 대한 IncrementalHash 만듭니다.

CreateHMAC(HashAlgorithmName, Byte[])

Source:
IncrementalHash.cs
Source:
IncrementalHash.cs
Source:
IncrementalHash.cs

hashAlgorithm지정된 해시 알고리즘과 key지정된 키를 사용하여 해시 기반 HMAC(메시지 인증 코드) 알고리즘에 대한 IncrementalHash 만듭니다.

public:
 static System::Security::Cryptography::IncrementalHash ^ CreateHMAC(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ key);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] key);
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] key);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * byte[] -> System.Security.Cryptography.IncrementalHash
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * byte[] -> System.Security.Cryptography.IncrementalHash
Public Shared Function CreateHMAC (hashAlgorithm As HashAlgorithmName, key As Byte()) As IncrementalHash

매개 변수

hashAlgorithm
HashAlgorithmName

HMAC 내에서 수행할 해시 알고리즘의 이름입니다.

key
Byte[]

HMAC의 비밀 키입니다. 키는 길이일 수 있지만 hashAlgorithm 지정한 해시 알고리즘의 출력 크기보다 긴 키는 올바른 크기의 키를 파생하기 위해 해시됩니다(hashAlgorithm지정한 알고리즘 사용). 따라서 비밀 키의 권장 크기는 hashAlgorithm지정된 해시의 출력 크기입니다.

반환

hashAlgorithm지정된 해시 알고리즘을 계산할 준비가 된 IncrementalHash 인스턴스입니다.

특성

예외

hashAlgorithm.Namenull또는 빈 문자열입니다.

hashAlgorithm 알려진 해시 알고리즘이 아닙니다.

적용 대상

CreateHMAC(HashAlgorithmName, ReadOnlySpan<Byte>)

Source:
IncrementalHash.cs
Source:
IncrementalHash.cs
Source:
IncrementalHash.cs

hashAlgorithm지정된 해시 알고리즘과 key지정된 키를 사용하여 해시 기반 HMAC(메시지 인증 코드) 알고리즘에 대한 IncrementalHash 만듭니다.

public:
 static System::Security::Cryptography::IncrementalHash ^ CreateHMAC(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> key);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> System.Security.Cryptography.IncrementalHash
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> System.Security.Cryptography.IncrementalHash
Public Shared Function CreateHMAC (hashAlgorithm As HashAlgorithmName, key As ReadOnlySpan(Of Byte)) As IncrementalHash

매개 변수

hashAlgorithm
HashAlgorithmName

HMAC 내에서 수행할 해시 알고리즘의 이름입니다.

key
ReadOnlySpan<Byte>

HMAC의 비밀 키입니다. 키는 길이일 수 있지만 hashAlgorithm 지정한 해시 알고리즘의 출력 크기보다 긴 키는 올바른 크기의 키를 파생하기 위해 해시됩니다(hashAlgorithm지정한 알고리즘 사용). 따라서 비밀 키의 권장 크기는 hashAlgorithm지정된 해시의 출력 크기입니다.

반환

hashAlgorithm지정된 해시 알고리즘을 계산하는 해시 인스턴스입니다.

특성

예외

hashAlgorithm.Namenull 또는 빈 문자열입니다.

hashAlgorithm 알려진 해시 알고리즘이 아닙니다.

적용 대상