You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

15 lines
291 B

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; }
}
}