- Initial commit
This commit is contained in:
22
Runtime/3rdParty/BouncyCastle/bcpg/SymmetricEncIntegrityPacket.cs
vendored
Normal file
22
Runtime/3rdParty/BouncyCastle/bcpg/SymmetricEncIntegrityPacket.cs
vendored
Normal file
@ -0,0 +1,22 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
using System.IO;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Bcpg
|
||||
{
|
||||
public class SymmetricEncIntegrityPacket
|
||||
: InputStreamPacket
|
||||
{
|
||||
internal readonly int version;
|
||||
|
||||
internal SymmetricEncIntegrityPacket(
|
||||
BcpgInputStream bcpgIn)
|
||||
: base(bcpgIn)
|
||||
{
|
||||
version = bcpgIn.ReadByte();
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user