HKDF.Expand Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
Expand(HashAlgorithmName, Byte[], Int32, Byte[]) |
Esegue la funzione HKDF-Expand. Vedere la sezione 2.3 di RFC5869. |
Expand(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>) |
Esegue la funzione HKDF-Expand. Vedere la sezione 2.3 di RFC5869. |
Expand(HashAlgorithmName, Byte[], Int32, Byte[])
- Origine:
- HKDF.cs
- Origine:
- HKDF.cs
- Origine:
- HKDF.cs
Esegue la funzione HKDF-Expand. Vedere la sezione 2.3 di RFC5869.
public static byte[] Expand (System.Security.Cryptography.HashAlgorithmName hashAlgorithmName, byte[] prk, int outputLength, byte[]? info = default);
static member Expand : System.Security.Cryptography.HashAlgorithmName * byte[] * int * byte[] -> byte[]
Public Shared Function Expand (hashAlgorithmName As HashAlgorithmName, prk As Byte(), outputLength As Integer, Optional info As Byte() = Nothing) As Byte()
Parametri
- hashAlgorithmName
- HashAlgorithmName
Algoritmo hash usato per le operazioni HMAC.
- prk
- Byte[]
Chiave pseudorandom che è almeno a condizione che la matrice di byte di output dell'algoritmo hash specificato (in genere l'output del passaggio Di estrazione).
- outputLength
- Int32
Lunghezza del materiale per le chiavi di output.
- info
- Byte[]
Informazioni facoltative specifiche del contesto e dell'applicazione.
Restituisce
Materiale per le chiavi di output.
Eccezioni
prk
è null
.
outputLength
è minore di 1.
Si applica a
Expand(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)
- Origine:
- HKDF.cs
- Origine:
- HKDF.cs
- Origine:
- HKDF.cs
Esegue la funzione HKDF-Expand. Vedere la sezione 2.3 di RFC5869.
public:
static void Expand(System::Security::Cryptography::HashAlgorithmName hashAlgorithmName, ReadOnlySpan<System::Byte> prk, Span<System::Byte> output, ReadOnlySpan<System::Byte> info);
public static void Expand (System.Security.Cryptography.HashAlgorithmName hashAlgorithmName, ReadOnlySpan<byte> prk, Span<byte> output, ReadOnlySpan<byte> info);
static member Expand : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> * Span<byte> * ReadOnlySpan<byte> -> unit
Public Shared Sub Expand (hashAlgorithmName As HashAlgorithmName, prk As ReadOnlySpan(Of Byte), output As Span(Of Byte), info As ReadOnlySpan(Of Byte))
Parametri
- hashAlgorithmName
- HashAlgorithmName
Algoritmo hash usato per le operazioni HMAC.
- prk
- ReadOnlySpan<Byte>
Chiave pseudorandom che è almeno a condizione che la matrice di byte di output dell'algoritmo hash specificato (in genere l'output dal passaggio Estratto).
- info
- ReadOnlySpan<Byte>
Informazioni specifiche del contesto e dell'applicazione (possono essere un intervallo vuoto).
Eccezioni
output
è vuoto o è maggiore della lunghezza massima consentita.