namespace com.hitrust.util.Checksums
|
|
{
|
|
using System;
|
|
|
|
public interface IChecksum
|
|
{
|
|
void Reset();
|
|
void Update(int bval);
|
|
void Update(byte[] buffer);
|
|
void Update(byte[] buf, int off, int len);
|
|
|
|
long Value { get; }
|
|
}
|
|
}
|
|
|