add all
This commit is contained in:
44
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/bcpg/Crc24.cs
vendored
Normal file
44
Packages/com.tivadar.best.http/Runtime/3rdParty/BouncyCastle/bcpg/Crc24.cs
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Bcpg
|
||||
{
|
||||
public class Crc24
|
||||
{
|
||||
private const int Crc24Init = 0x0b704ce;
|
||||
private const int Crc24Poly = 0x1864cfb;
|
||||
|
||||
private int crc = Crc24Init;
|
||||
|
||||
public Crc24()
|
||||
{
|
||||
}
|
||||
|
||||
public void Update(
|
||||
int b)
|
||||
{
|
||||
crc ^= b << 16;
|
||||
for (int i = 0; i < 8; i++)
|
||||
{
|
||||
crc <<= 1;
|
||||
if ((crc & 0x1000000) != 0)
|
||||
{
|
||||
crc ^= Crc24Poly;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public int Value
|
||||
{
|
||||
get { return crc; }
|
||||
}
|
||||
|
||||
public void Reset()
|
||||
{
|
||||
crc = Crc24Init;
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user