Files
SuperVPN/output/Libraries/BouncyCastle.Crypto/Org/BouncyCastle/Crypto/IBasicAgreement.cs
2025-10-09 09:57:24 +09:00

13 lines
226 B
C#

using Org.BouncyCastle.Math;
namespace Org.BouncyCastle.Crypto;
public interface IBasicAgreement
{
void Init(ICipherParameters parameters);
int GetFieldSize();
BigInteger CalculateAgreement(ICipherParameters pubKey);
}