HashT Class

Provides utility methods for hashing data using a specific hash algorithm of type T.

Definition

Namespace: SnapDB.Security
Assembly: SnapDB (in SnapDB.dll) Version: 1.0.102.0 -- Release Build+29075351d0e5aa4dea46a5c520805222f672dc2e
public static class Hash<T>
where T : new(), IDigest
Inheritance
Object    HashT

Type Parameters

T
The type of hash algorithm to use, which must implement the IDigest interface and have a default constructor.

Methods

Compute Computes a hash of the specified data using the specified hash algorithm of type T.

See Also