Method | Description | |
---|---|---|
ComputeHMACMD5Hash ( this input, byte key ) : byte[] |
Computes the HMACMD5 hash for the current byte array using the managed library.
|
|
ComputeHMACMD5Hash ( this input, byte key, int offset, int count ) : byte[] |
Computes the HMACMD5 hash for the current byte array using the managed library.
|
|
ComputeHMACSHA1Hash ( this input, byte key ) : byte[] |
Computes the HMACSHA1 hash for the current byte array using the managed library.
|
|
ComputeHMACSHA1Hash ( this input, byte key, int offset, int count ) : byte[] |
Computes the HMACSHA1 hash for the current byte array using the managed library.
|
|
ComputeHMACSHA256Hash ( this input, byte key ) : byte[] |
Computes the HMACSHA256 hash for the current byte array using the managed library.
|
|
ComputeHMACSHA256Hash ( this input, byte key, int offset, int count ) : byte[] |
Computes the HMACSHA256 hash for the current byte array using the managed library.
|
|
ComputeMD5Hash ( this input ) : byte[] |
Computes the MD5 hash for the current byte array using the managed library.
|
|
ComputeMD5Hash ( this input, int offset, int count ) : byte[] |
Computes the MD5 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.
|
|
ComputeSHA1Hash ( this input, int offset, int count ) : 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.
|
|
ComputeSHA256Hash ( this input, int offset, int count ) : byte[] |
Computes the SHA256 hash for the current byte array using the managed library.
|
|
ToBase64String ( this input ) : string |
Converts an array of 8-bit unsigned integers to its equivalent string representation encoded with base 64 digits.
|
|
ToString ( this input, |
Converts an array of 8-bit unsigned integers to its equivalent string representation, using the specified Encoding.
|
public static ComputeHMACMD5Hash ( this input, byte key ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
return | byte[] |
public static ComputeHMACMD5Hash ( this input, byte key, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ComputeHMACSHA1Hash ( this input, byte key ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
return | byte[] |
public static ComputeHMACSHA1Hash ( this input, byte key, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ComputeHMACSHA256Hash ( this input, byte key ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
return | byte[] |
public static ComputeHMACSHA256Hash ( this input, byte key, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
key | byte | The key to use in the hash algorithm. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ComputeMD5Hash ( this input ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
return | byte[] |
public static ComputeMD5Hash ( this input, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ComputeSHA1Hash ( this input ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
return | byte[] |
public static ComputeSHA1Hash ( this input, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ComputeSHA256Hash ( this input ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
return | byte[] |
public static ComputeSHA256Hash ( this input, int offset, int count ) : byte[] | ||
input | this | An array of 8-bit unsigned integers. |
offset | int | The offset into the byte array from which to begin using data. |
count | int | The number of bytes in the array to use as data. |
return | byte[] |
public static ToBase64String ( this input ) : string | ||
input | this | An array of 8-bit unsigned integers. |
return | string |
public static ToString ( this input, |
||
input | this | An array of 8-bit unsigned integers. |
encoding | The |
|
return | string |