Namespace: Assorted.Utils.Crypto
Assembly: Assorted.Utils (Assorted.Utils.dll) version 1.1.0.0
Inheritance: object→
KeyedHasher
Defines an abstract keyed-hash (HMAC) algorithm.
public abstract class KeyedHasher
Constructor | Description |
---|---|
KeyedHasher() | Initializes a new instance of KeyedHasher class. |
Property | Description |
---|---|
Size | Gets the size, in bits, of the computed hash code. |
Method | Description |
---|---|
Compute(Byte[], Byte[]) | Returns the keyed-hash code of the specified array of bytes. The secret key is an array of bytes. |
Compute(Byte[], Stream) | Returns the keyed-hash code of content of the specified stream. The secret key is an array of bytes. |
Compute(Byte[], string) | Returns the keyed-hash code of the specified string. The secret key is an array of bytes. |
Compute(string, Byte[]) | Returns the keyed-hash code of the specified array of bytes. The secret key is a string. |
Compute(string, Stream) | Returns the keyed-hash code of the specified System.IO.Stream object. The secret key is a string. |
Compute(string, string) | Returns the keyed-hash code of the specified string. The secret key is a string. |
This document is generated by DG.