共用方式為


HKDF.Extract 方法

定義

多載

Extract(HashAlgorithmName, Byte[], Byte[])

執行 HKDF 擷取函數。 請參閱 RFC5869的 2.2 節。

Extract(HashAlgorithmName, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>)

執行 HKDF 擷取函數。 請參閱 RFC5869的 2.2 節。

Extract(HashAlgorithmName, Byte[], Byte[])

來源:
HKDF.cs
來源:
HKDF.cs
來源:
HKDF.cs

執行 HKDF 擷取函數。 請參閱 RFC5869的 2.2 節。

public static byte[] Extract (System.Security.Cryptography.HashAlgorithmName hashAlgorithmName, byte[] ikm, byte[]? salt = default);
static member Extract : System.Security.Cryptography.HashAlgorithmName * byte[] * byte[] -> byte[]
Public Shared Function Extract (hashAlgorithmName As HashAlgorithmName, ikm As Byte(), Optional salt As Byte() = Nothing) As Byte()

參數

hashAlgorithmName
HashAlgorithmName

用於 HMAC 作業的哈希演算法。

ikm
Byte[]

輸入金鑰產製原料。

salt
Byte[]

選用的 salt 值 (非秘密的隨機值)。 如未提供,則預設為與所指定雜湊演算法的輸出相同長度的位元組陣列。

傳回

Byte[]

偽隨機金鑰 (prk)。

適用於

Extract(HashAlgorithmName, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>)

來源:
HKDF.cs
來源:
HKDF.cs
來源:
HKDF.cs

執行 HKDF 擷取函數。 請參閱 RFC5869的 2.2 節。

public:
 static int Extract(System::Security::Cryptography::HashAlgorithmName hashAlgorithmName, ReadOnlySpan<System::Byte> ikm, ReadOnlySpan<System::Byte> salt, Span<System::Byte> prk);
public static int Extract (System.Security.Cryptography.HashAlgorithmName hashAlgorithmName, ReadOnlySpan<byte> ikm, ReadOnlySpan<byte> salt, Span<byte> prk);
static member Extract : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> -> int
Public Shared Function Extract (hashAlgorithmName As HashAlgorithmName, ikm As ReadOnlySpan(Of Byte), salt As ReadOnlySpan(Of Byte), prk As Span(Of Byte)) As Integer

參數

hashAlgorithmName
HashAlgorithmName

用於 HMAC 作業的哈希演算法。

ikm
ReadOnlySpan<Byte>

輸入金鑰產製原料。

salt
ReadOnlySpan<Byte>

salt 值 (非秘密的隨機值)。

prk
Span<Byte>

要接收偽隨機金鑰 (prk) 的目的地緩衝區。

傳回

寫入 prk 緩衝區的位元組數目。

適用於