Files
JJBB/Assets/Plugins/Best HTTP/Source/SecureProtocol/crypto/tls/BulkCipherAlgorithm.cs
2024-08-23 15:49:34 +08:00

30 lines
830 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
#pragma warning disable
using System;
namespace BestHTTP.SecureProtocol.Org.BouncyCastle.Crypto.Tls
{
/// <summary>RFC 2246</summary>
/// <remarks>
/// Note that the values here are implementation-specific and arbitrary. It is recommended not to
/// depend on the particular values (e.g. serialization).
/// </remarks>
public abstract class BulkCipherAlgorithm
{
public const int cls_null = 0;
public const int rc4 = 1;
public const int rc2 = 2;
public const int des = 3;
public const int cls_3des = 4;
public const int des40 = 5;
/*
* RFC 4346
*/
public const int aes = 6;
public const int idea = 7;
}
}
#pragma warning restore
#endif