Condividi tramite


CryptographicOperations.HmacDataAsync Metodo

Definizione

Overload

HmacDataAsync(HashAlgorithmName, Byte[], Stream, CancellationToken)

Calcola in modo asincrono l'HMAC di un flusso.

HmacDataAsync(HashAlgorithmName, ReadOnlyMemory<Byte>, Stream, CancellationToken)

Calcola in modo asincrono l'HMAC di un flusso.

HmacDataAsync(HashAlgorithmName, ReadOnlyMemory<Byte>, Stream, Memory<Byte>, CancellationToken)

Calcola in modo asincrono l'HMAC di un flusso.

HmacDataAsync(HashAlgorithmName, Byte[], Stream, CancellationToken)

Origine:
CryptographicOperations.cs

Calcola in modo asincrono l'HMAC di un flusso.

public static System.Threading.Tasks.ValueTask<byte[]> HmacDataAsync (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] key, System.IO.Stream source, System.Threading.CancellationToken cancellationToken = default);
static member HmacDataAsync : System.Security.Cryptography.HashAlgorithmName * byte[] * System.IO.Stream * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<byte[]>
Public Shared Function HmacDataAsync (hashAlgorithm As HashAlgorithmName, key As Byte(), source As Stream, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Byte())

Parametri

hashAlgorithm
HashAlgorithmName

Algoritmo usato per calcolare il codice HMAC.

key
Byte[]

Chiave privata. La chiave può essere qualsiasi lunghezza.

source
Stream

Flusso su cui calcolare il codice HMAC.

cancellationToken
CancellationToken

Token da monitorare per le richieste di annullamento. Il valore predefinito è None.

Restituisce

HMAC dei dati.

Eccezioni

key o source è null.

-o-

hashAlgorithm ha un Namenull.

hashAlgorithm ha un Name vuoto.

-o-

source non supporta la lettura.

hashAlgorithm specifica un algoritmo hash non supportato dalla piattaforma corrente.

hashAlgorithm specifica un algoritmo hash sconosciuto.

cancellationToken è stato annullato.

Si applica a

HmacDataAsync(HashAlgorithmName, ReadOnlyMemory<Byte>, Stream, CancellationToken)

Origine:
CryptographicOperations.cs

Calcola in modo asincrono l'HMAC di un flusso.

public static System.Threading.Tasks.ValueTask<byte[]> HmacDataAsync (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlyMemory<byte> key, System.IO.Stream source, System.Threading.CancellationToken cancellationToken = default);
static member HmacDataAsync : System.Security.Cryptography.HashAlgorithmName * ReadOnlyMemory<byte> * System.IO.Stream * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<byte[]>
Public Shared Function HmacDataAsync (hashAlgorithm As HashAlgorithmName, key As ReadOnlyMemory(Of Byte), source As Stream, Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Byte())

Parametri

hashAlgorithm
HashAlgorithmName

Algoritmo usato per calcolare il codice HMAC.

key
ReadOnlyMemory<Byte>

Chiave privata. La chiave può essere qualsiasi lunghezza.

source
Stream

Flusso su cui calcolare il codice HMAC.

cancellationToken
CancellationToken

Token da monitorare per le richieste di annullamento. Il valore predefinito è None.

Restituisce

HMAC dei dati.

Eccezioni

source è null.

-o-

hashAlgorithm ha un Namenull.

hashAlgorithm ha un Name vuoto.

-o-

source non supporta la lettura.

hashAlgorithm specifica un algoritmo hash non supportato dalla piattaforma corrente.

hashAlgorithm specifica un algoritmo hash sconosciuto.

cancellationToken è stato annullato.

Si applica a

HmacDataAsync(HashAlgorithmName, ReadOnlyMemory<Byte>, Stream, Memory<Byte>, CancellationToken)

Origine:
CryptographicOperations.cs

Calcola in modo asincrono l'HMAC di un flusso.

public static System.Threading.Tasks.ValueTask<int> HmacDataAsync (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlyMemory<byte> key, System.IO.Stream source, Memory<byte> destination, System.Threading.CancellationToken cancellationToken = default);
static member HmacDataAsync : System.Security.Cryptography.HashAlgorithmName * ReadOnlyMemory<byte> * System.IO.Stream * Memory<byte> * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
Public Shared Function HmacDataAsync (hashAlgorithm As HashAlgorithmName, key As ReadOnlyMemory(Of Byte), source As Stream, destination As Memory(Of Byte), Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

Parametri

hashAlgorithm
HashAlgorithmName

Algoritmo usato per calcolare il codice HMAC.

key
ReadOnlyMemory<Byte>

Chiave privata. La chiave può essere qualsiasi lunghezza.

source
Stream

Flusso su cui calcolare il codice HMAC.

destination
Memory<Byte>

Buffer per ricevere il valore HMAC.

cancellationToken
CancellationToken

Token da monitorare per le richieste di annullamento. Il valore predefinito è None.

Restituisce

Numero totale di byte scritti in destination.

Eccezioni

source è null.

-o-

hashAlgorithm ha un Namenull.

Il buffer in destination è troppo piccolo per contenere le dimensioni calcolate di HMAC.

-o-

hashAlgorithm ha un Name vuoto.

-o-

source non supporta la lettura.

hashAlgorithm specifica un algoritmo hash non supportato dalla piattaforma corrente.

hashAlgorithm specifica un algoritmo hash sconosciuto.

cancellationToken è stato annullato.

Si applica a