123456789101112131415161718192021222324252627282930313233 |
- #if !BESTHTTP_DISABLE_ALTERNATE_SSL && (!UNITY_WEBGL || UNITY_EDITOR)
- using System;
- using Org.BouncyCastle.Math;
- namespace Org.BouncyCastle.Crypto
- {
-
- public interface IBasicAgreement
- {
-
- void Init(ICipherParameters parameters);
-
- int GetFieldSize();
-
- BigInteger CalculateAgreement(ICipherParameters pubKey);
- }
- }
- #endif
|