Skip to content

Latest commit

 

History

History
44 lines (30 loc) · 2.09 KB

Assorted.Utils.Crypto.KeyedHasher.md

File metadata and controls

44 lines (30 loc) · 2.09 KB

KeyedHasher Class

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.

Syntax

public abstract class KeyedHasher

Constructors

Constructor Description
KeyedHasher() Initializes a new instance of KeyedHasher class.

Properties

Property Description
Size Gets the size, in bits, of the computed hash code.

Methods

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.

See Also


This document is generated by DG.