123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Math.EC.Multiplier;
- using Org.BouncyCastle.Utilities.Encoders;
- namespace Org.BouncyCastle.Math.EC.Custom.Sec
- {
- internal class SecT163K1Curve
- : AbstractF2mCurve
- {
- private const int SecT163K1_DEFAULT_COORDS = COORD_LAMBDA_PROJECTIVE;
- protected readonly SecT163K1Point m_infinity;
- public SecT163K1Curve()
- : base(163, 3, 6, 7)
- {
- this.m_infinity = new SecT163K1Point(this, null, null);
- this.m_a = FromBigInteger(BigInteger.One);
- this.m_b = this.m_a;
- this.m_order = new BigInteger(1, Hex.Decode("04000000000000000000020108A2E0CC0D99F8A5EF"));
- this.m_cofactor = BigInteger.Two;
- this.m_coord = SecT163K1_DEFAULT_COORDS;
- }
- protected override ECCurve CloneCurve()
- {
- return new SecT163K1Curve();
- }
- public override bool SupportsCoordinateSystem(int coord)
- {
- switch (coord)
- {
- case COORD_LAMBDA_PROJECTIVE:
- return true;
- default:
- return false;
- }
- }
- protected override ECMultiplier CreateDefaultMultiplier()
- {
- return new WTauNafMultiplier();
- }
- public override ECPoint Infinity
- {
- get { return m_infinity; }
- }
- public override int FieldSize
- {
- get { return 163; }
- }
- public override ECFieldElement FromBigInteger(BigInteger x)
- {
- return new SecT163FieldElement(x);
- }
- protected internal override ECPoint CreateRawPoint(ECFieldElement x, ECFieldElement y, bool withCompression)
- {
- return new SecT163K1Point(this, x, y, withCompression);
- }
- protected internal override ECPoint CreateRawPoint(ECFieldElement x, ECFieldElement y, ECFieldElement[] zs, bool withCompression)
- {
- return new SecT163K1Point(this, x, y, zs, withCompression);
- }
- public override bool IsKoblitz
- {
- get { return true; }
- }
- public virtual int M
- {
- get { return 163; }
- }
- public virtual bool IsTrinomial
- {
- get { return false; }
- }
- public virtual int K1
- {
- get { return 3; }
- }
- public virtual int K2
- {
- get { return 6; }
- }
- public virtual int K3
- {
- get { return 7; }
- }
- }
- }
- #endif
|