HKDF.Extract 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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
緩衝區的位元組數目。