Method | Description | |
---|---|---|
ComputeHMACSHA1Hash ( this input, byte key ) : byte[] |
Computes the HMACSHA1 hash for the current byte array using the managed library.
|
|
ComputeHMACSHA256Hash ( this input, byte key ) : byte[] |
Computes the SHA256 hash for the current byte array using the managed library.
|
|
ComputeSHA1Hash ( this input ) : byte[] |
Computes the SHA1 hash for the current byte array using the managed library.
|
|
ComputeSHA256Hash ( this input ) : byte[] |
Computes the SHA256 hash for the current byte array using the managed library.
|
|
ToArray ( this input ) : byte[] |
Writes the stream contents to a byte array.
|
|
ToArrayAsync ( this input ) : Task |
Writes the stream contents to a byte array.
|
public static ComputeHMACSHA1Hash ( this input, byte key ) : byte[] | ||
input | this | The input |
key | byte | The key to use in the hash algorithm. |
return | byte[] |
public static ComputeHMACSHA256Hash ( this input, byte key ) : byte[] | ||
input | this | The input |
key | byte | The key to use in the hash algorithm. |
return | byte[] |
public static ComputeSHA1Hash ( this input ) : byte[] | ||
input | this | The input |
return | byte[] |
public static ComputeSHA256Hash ( this input ) : byte[] | ||
input | this | The input |
return | byte[] |
public static ToArray ( this input ) : byte[] | ||
input | this | The input stream. |
return | byte[] |
public static ToArrayAsync ( this input ) : Task |
||
input | this | The input stream. |
return | Task |