13 lines
226 B
C#
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);
|
|
}
|