HKDF Classe
Definição
Derivação de chaves para extração e expansão com base em HMAC (HKDF), conforme o RFC 5869RFC5869 HMAC-based Extract-and-Expand Key Derivation (HKDF)
public ref class HKDF abstract sealed
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static class HKDF
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
type HKDF = class
Public Class HKDF
- Herança
-
HKDF
- Atributos
Comentários
Em situações em que o material da chave de entrada já é uma cadeia de caracteres de bits uniformemente aleatória, o padrão HKDF permite que a fase de extração seja ignorada e a chave mestra seja usada diretamente como a chave pseudoaleatória.In situations where the input key material is already a uniformly random bit string, the HKDF standard allows the Extract phase to be skipped and the master key to be used directly as the pseudorandom key. Consulte RFC5869 para obter mais informações.See RFC5869 for more information.
Métodos
| DeriveKey(HashAlgorithmName, Byte[], Int32, Byte[], Byte[]) |
Executa as funções Expandir e Extrair da HKDF de derivação de chaves.Performs the key derivation HKDF Expand and Extract functions. |
| DeriveKey(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>) |
Executa as funções Expandir e Extrair da HKDF de derivação de chaves.Performs the key derivation HKDF Expand and Extract functions. |
| Expand(HashAlgorithmName, Byte[], Int32, Byte[]) |
Executa a função Expandir da HKDF. Confira a seção 2.3 do RFC5869.Performs the HKDF-Expand function See section 2.3 of RFC5869. |
| Expand(HashAlgorithmName, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>) |
Executa a função Expandir da HKDF.Performs the HKDF-Expand function. Confira a seção 2.3 do RFC 5869.See section 2.3 of RFC5869. |
| Extract(HashAlgorithmName, Byte[], Byte[]) |
Executa a função Extrair da HKDF.Performs the HKDF-Extract function. Confira a seção 2.2 do RFC 5869.See section 2.2 of RFC5869. |
| Extract(HashAlgorithmName, ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>) |
Executa a função Extrair da HKDF.Performs the HKDF-Extract function. Confira a seção 2.2 do RFC 5869.See section 2.2 of RFC5869. |