This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,24 @@
using System;
namespace ICSharpCode.SharpZipLib.Checksums
{
// Token: 0x02000009 RID: 9
public interface IChecksum
{
// Token: 0x1700000E RID: 14
// (get) Token: 0x06000068 RID: 104
long Value { get; }
// Token: 0x06000069 RID: 105
void Reset();
// Token: 0x0600006A RID: 106
void Update(int value);
// Token: 0x0600006B RID: 107
void Update(byte[] buffer);
// Token: 0x0600006C RID: 108
void Update(byte[] buffer, int offset, int count);
}
}