Class HashResult
Represents the result of a computed System.Security.Cryptography.HashAlgorithm or System.Security.Cryptography.KeyedHashAlgorithm operation. This class cannot be inherited.
Namespace: Cuemon.Security.Cryptography
Assembly: Cuemon.Security.dll
Syntax
public sealed class HashResult : ChecksumResult
Methods
| Improve this DocToBase64()
Converts the Value to its equivalent string representation that is encoded with base-64 digits.
Declaration
public override string ToBase64()
Returns
Type | Description |
---|---|
System.String | A System.String representation, in base 64, of the contents of Value. |
Overrides
| Improve this DocToBinary()
Converts the Value to its equivalent binary representation.
Declaration
public override string ToBinary()
Returns
Type | Description |
---|---|
System.String | A System.String representation, in binary, of the contents of Value. |
Overrides
| Improve this DocToHexadecimal()
Converts the Value to its equivalent hexadecimal representation.
Declaration
public override string ToHexadecimal()
Returns
Type | Description |
---|---|
System.String | A System.String representation, in hexadecimal, of the contents of Value. |
Overrides
| Improve this DocToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents this instance. |
Overrides
| Improve this DocToUrlEncodedBase64()
Converts the Value to its equivalent string representation that is encoded with base-64 digits, which is usable for transmission on the URL.
Declaration
public override string ToUrlEncodedBase64()
Returns
Type | Description |
---|---|
System.String | A System.String representation, in base 64 which is usable for transmission on the URL, of the contents of Value. |