12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Math;
- using Org.BouncyCastle.Math.EC;
- using Org.BouncyCastle.Crypto;
- using Org.BouncyCastle.Crypto.Parameters;
- namespace Org.BouncyCastle.Crypto.Agreement
- {
-
- public class ECDHBasicAgreement
- : IBasicAgreement
- {
- protected internal ECPrivateKeyParameters privKey;
- public virtual void Init(
- ICipherParameters parameters)
- {
- if (parameters is ParametersWithRandom)
- {
- parameters = ((ParametersWithRandom)parameters).Parameters;
- }
- this.privKey = (ECPrivateKeyParameters)parameters;
- }
- public virtual int GetFieldSize()
- {
- return (privKey.Parameters.Curve.FieldSize + 7) / 8;
- }
- public virtual BigInteger CalculateAgreement(
- ICipherParameters pubKey)
- {
- ECPublicKeyParameters pub = (ECPublicKeyParameters) pubKey;
- if (!pub.Parameters.Equals(privKey.Parameters))
- throw new InvalidOperationException("ECDH public key has wrong domain parameters");
- ECPoint P = pub.Q.Multiply(privKey.D).Normalize();
- if (P.IsInfinity)
- throw new InvalidOperationException("Infinity is not a valid agreement value for ECDH");
- return P.AffineXCoord.ToBigInteger();
- }
- }
- }
- #endif
|