Condividi tramite


Kmac256.HashData Metodo

Definizione

Overload

HashData(Byte[], Byte[], Int32, Byte[])

Calcola l'hash dei dati usando l'algoritmo KMAC256.

HashData(Byte[], Stream, Int32, Byte[])

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

HashData(ReadOnlySpan<Byte>, Stream, Int32, ReadOnlySpan<Byte>)

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

HashData(ReadOnlySpan<Byte>, Stream, Span<Byte>, ReadOnlySpan<Byte>)

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32, ReadOnlySpan<Byte>)

Calcola l'hash dei dati usando l'algoritmo KMAC256.

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)

Calcola l'hash dei dati usando l'algoritmo KMAC256.

HashData(Byte[], Byte[], Int32, Byte[])

Origine:
Kmac256.cs

Calcola l'hash dei dati usando l'algoritmo KMAC256.

public static byte[] HashData (byte[] key, byte[] source, int outputLength, byte[]? customizationString = default);
static member HashData : byte[] * byte[] * int * byte[] -> byte[]
Public Shared Function HashData (key As Byte(), source As Byte(), outputLength As Integer, Optional customizationString As Byte() = Nothing) As Byte()

Parametri

key
Byte[]

Tasto KMAC.

source
Byte[]

Dati di cui eseguire l'hash.

outputLength
Int32

Dimensione dell'hash da produrre.

customizationString
Byte[]

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Restituisce

Byte[]

Hash dei dati.

Eccezioni

outputLength è negativo.

key o source è null.

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a

HashData(Byte[], Stream, Int32, Byte[])

Origine:
Kmac256.cs

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

public static byte[] HashData (byte[] key, System.IO.Stream source, int outputLength, byte[]? customizationString = default);
static member HashData : byte[] * System.IO.Stream * int * byte[] -> byte[]
Public Shared Function HashData (key As Byte(), source As Stream, outputLength As Integer, Optional customizationString As Byte() = Nothing) As Byte()

Parametri

key
Byte[]

Tasto KMAC.

source
Stream

Flusso da hashre.

outputLength
Int32

Dimensione dell'hash da produrre.

customizationString
Byte[]

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Restituisce

Byte[]

Hash dei dati.

Eccezioni

source non supporta la lettura.

outputLength è negativo.

key o source è null.

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a

HashData(ReadOnlySpan<Byte>, Stream, Int32, ReadOnlySpan<Byte>)

Origine:
Kmac256.cs

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

public static byte[] HashData (ReadOnlySpan<byte> key, System.IO.Stream source, int outputLength, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * System.IO.Stream * int * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (key As ReadOnlySpan(Of Byte), source As Stream, outputLength As Integer, Optional customizationString As ReadOnlySpan(Of Byte) = Nothing) As Byte()

Parametri

key
ReadOnlySpan<Byte>

Tasto KMAC.

source
Stream

Flusso da hashre.

outputLength
Int32

Dimensione dell'hash da produrre.

customizationString
ReadOnlySpan<Byte>

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Restituisce

Byte[]

Hash dei dati.

Eccezioni

source non supporta la lettura.

outputLength è negativo.

source è null.

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a

HashData(ReadOnlySpan<Byte>, Stream, Span<Byte>, ReadOnlySpan<Byte>)

Origine:
Kmac256.cs

Calcola l'hash di un flusso usando l'algoritmo KMAC256.

public static void HashData (ReadOnlySpan<byte> key, System.IO.Stream source, Span<byte> destination, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * System.IO.Stream * Span<byte> * ReadOnlySpan<byte> -> unit
Public Shared Sub HashData (key As ReadOnlySpan(Of Byte), source As Stream, destination As Span(Of Byte), Optional customizationString As ReadOnlySpan(Of Byte) = Nothing)

Parametri

key
ReadOnlySpan<Byte>

Tasto KMAC.

source
Stream

Flusso da hashre.

destination
Span<Byte>

Buffer da riempire con l'hash.

customizationString
ReadOnlySpan<Byte>

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Eccezioni

source non supporta la lettura.

source è null.

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Int32, ReadOnlySpan<Byte>)

Origine:
Kmac256.cs

Calcola l'hash dei dati usando l'algoritmo KMAC256.

public static byte[] HashData (ReadOnlySpan<byte> key, ReadOnlySpan<byte> source, int outputLength, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * int * ReadOnlySpan<byte> -> byte[]
Public Shared Function HashData (key As ReadOnlySpan(Of Byte), source As ReadOnlySpan(Of Byte), outputLength As Integer, Optional customizationString As ReadOnlySpan(Of Byte) = Nothing) As Byte()

Parametri

key
ReadOnlySpan<Byte>

Tasto KMAC.

source
ReadOnlySpan<Byte>

Dati di cui eseguire l'hash.

outputLength
Int32

Dimensione dell'hash da produrre.

customizationString
ReadOnlySpan<Byte>

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Restituisce

Byte[]

Hash dei dati.

Eccezioni

outputLength è negativo.

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a

HashData(ReadOnlySpan<Byte>, ReadOnlySpan<Byte>, Span<Byte>, ReadOnlySpan<Byte>)

Origine:
Kmac256.cs

Calcola l'hash dei dati usando l'algoritmo KMAC256.

public static void HashData (ReadOnlySpan<byte> key, ReadOnlySpan<byte> source, Span<byte> destination, ReadOnlySpan<byte> customizationString = default);
static member HashData : ReadOnlySpan<byte> * ReadOnlySpan<byte> * Span<byte> * ReadOnlySpan<byte> -> unit
Public Shared Sub HashData (key As ReadOnlySpan(Of Byte), source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), Optional customizationString As ReadOnlySpan(Of Byte) = Nothing)

Parametri

key
ReadOnlySpan<Byte>

Tasto KMAC.

source
ReadOnlySpan<Byte>

Dati di cui eseguire l'hash.

destination
Span<Byte>

Buffer da riempire con l'hash.

customizationString
ReadOnlySpan<Byte>

Stringa di personalizzazione facoltativa. Il valore predefinito non è una stringa di personalizzazione.

Eccezioni

Si è verificato un errore durante l'operazione.

La piattaforma non supporta KMAC256. I chiamanti possono usare la proprietà IsSupported per determinare se la piattaforma supporta KMAC256.

Si applica a