|
static string | BinaryToString (byte[] Data) |
| Converts an array of bytes to a string with their hexadecimal representations (in lower case). More...
|
|
static string | BinaryToString (byte[] Data, bool SpaceDelimiter) |
| Converts an array of bytes to a string with their hexadecimal representations (in lower case). More...
|
|
static byte[] | StringToBinary (string s) |
| Parses a hex string. More...
|
|
static string | ComputeHashString (HashFunction Function, byte[] Data) |
| Computes a hash of a block of binary data. More...
|
|
static string | ComputeHashString (HashFunction Function, Stream Data) |
| Computes a hash of a block of binary data. More...
|
|
static byte[] | ComputeHash (HashFunction Function, byte[] Data) |
| Computes a hash of a block of binary data. More...
|
|
static byte[] | ComputeHash (HashFunction Function, Stream Data) |
| Computes a hash of a block of binary data. More...
|
|
static string | ComputeSHA1HashString (byte[] Data) |
| Computes the SHA-1 hash of a block of binary data. More...
|
|
static string | ComputeSHA1HashString (Stream Data) |
| Computes the SHA-1 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA1Hash (byte[] Data) |
| Computes the SHA-1 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA1Hash (Stream Data) |
| Computes the SHA-1 hash of a block of binary data. More...
|
|
static string | ComputeSHA256HashString (byte[] Data) |
| Computes the SHA-256 hash of a block of binary data. More...
|
|
static string | ComputeSHA256HashString (Stream Data) |
| Computes the SHA-256 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA256Hash (byte[] Data) |
| Computes the SHA-256 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA256Hash (Stream Data) |
| Computes the SHA-256 hash of a block of binary data. More...
|
|
static string | ComputeSHA384HashString (byte[] Data) |
| Computes the SHA-384 hash of a block of binary data. More...
|
|
static string | ComputeSHA384HashString (Stream Data) |
| Computes the SHA-384 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA384Hash (byte[] Data) |
| Computes the SHA-384 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA384Hash (Stream Data) |
| Computes the SHA-384 hash of a block of binary data. More...
|
|
static string | ComputeSHA512HashString (byte[] Data) |
| Computes the SHA-512 hash of a block of binary data. More...
|
|
static string | ComputeSHA512HashString (Stream Data) |
| Computes the SHA-512 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA512Hash (byte[] Data) |
| Computes the SHA-512 hash of a block of binary data. More...
|
|
static byte[] | ComputeSHA512Hash (Stream Data) |
| Computes the SHA-512 hash of a block of binary data. More...
|
|
static string | ComputeMD5HashString (byte[] Data) |
| Computes the MD5 hash of a block of binary data. More...
|
|
static string | ComputeMD5HashString (Stream Data) |
| Computes the MD5 hash of a block of binary data. More...
|
|
static byte[] | ComputeMD5Hash (byte[] Data) |
| Computes the MD5 hash of a block of binary data. More...
|
|
static byte[] | ComputeMD5Hash (Stream Data) |
| Computes the MD5 hash of a block of binary data. More...
|
|
static string | ComputeHMACSHA1HashString (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-1 hash of a block of binary data. More...
|
|
static byte[] | ComputeHMACSHA1Hash (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-1 hash of a block of binary data. More...
|
|
static string | ComputeHMACSHA256HashString (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-256 hash of a block of binary data. More...
|
|
static byte[] | ComputeHMACSHA256Hash (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-256 hash of a block of binary data. More...
|
|
static string | ComputeHMACSHA384HashString (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-384 hash of a block of binary data. More...
|
|
static byte[] | ComputeHMACSHA384Hash (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-384 hash of a block of binary data. More...
|
|
static string | ComputeHMACSHA512HashString (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-512 hash of a block of binary data. More...
|
|
static byte[] | ComputeHMACSHA512Hash (byte[] Key, byte[] Data) |
| Computes the HMAC-SHA-512 hash of a block of binary data. More...
|
|
Contains methods for simple hash calculations.
Definition at line 58 of file Hashes.cs.