Files
tianrunCRM/Assets/BestHTTP/SecureProtocol/crypto/parameters/RC2Parameters.cs
2020-07-09 08:50:24 +08:00

52 lines
839 B
C#

#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
using System;
namespace Org.BouncyCastle.Crypto.Parameters
{
public class RC2Parameters
: KeyParameter
{
private readonly int bits;
public RC2Parameters(
byte[] key)
: this(key, (key.Length > 128) ? 1024 : (key.Length * 8))
{
}
public RC2Parameters(
byte[] key,
int keyOff,
int keyLen)
: this(key, keyOff, keyLen, (keyLen > 128) ? 1024 : (keyLen * 8))
{
}
public RC2Parameters(
byte[] key,
int bits)
: base(key)
{
this.bits = bits;
}
public RC2Parameters(
byte[] key,
int keyOff,
int keyLen,
int bits)
: base(key, keyOff, keyLen)
{
this.bits = bits;
}
public int EffectiveKeyBits
{
get { return bits; }
}
}
}
#endif