- Initial commit
This commit is contained in:
30
Runtime/3rdParty/BouncyCastle/math/ec/endo/EndoPreCompInfo.cs
vendored
Normal file
30
Runtime/3rdParty/BouncyCastle/math/ec/endo/EndoPreCompInfo.cs
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
#if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
|
||||
#pragma warning disable
|
||||
using System;
|
||||
|
||||
using Best.HTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Multiplier;
|
||||
|
||||
namespace Best.HTTP.SecureProtocol.Org.BouncyCastle.Math.EC.Endo
|
||||
{
|
||||
public class EndoPreCompInfo
|
||||
: PreCompInfo
|
||||
{
|
||||
protected ECEndomorphism m_endomorphism;
|
||||
|
||||
protected ECPoint m_mappedPoint;
|
||||
|
||||
public virtual ECEndomorphism Endomorphism
|
||||
{
|
||||
get { return m_endomorphism; }
|
||||
set { this.m_endomorphism = value; }
|
||||
}
|
||||
|
||||
public virtual ECPoint MappedPoint
|
||||
{
|
||||
get { return m_mappedPoint; }
|
||||
set { this.m_mappedPoint = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
#pragma warning restore
|
||||
#endif
|
||||
Reference in New Issue
Block a user