Interface IHashFunction
Provides incremental hashing.
This is non-private only to facilitate unit testing.
public interface IHashFunction : IDisposable
- Inherited Members
Methods
GetHash()
Gets the hash.
Once GetHash is called, no further hash updates are allowed.
string GetHash()
Returns
- string
A base64-encoded hash.
Update(byte[], int, int)
Incrementally updates the hash.
void Update(byte[] data, int offset, int count)