Initial Commit
This commit is contained in:
24
iTechSharp/srcbc/crypto/IBasicAgreement.cs
Normal file
24
iTechSharp/srcbc/crypto/IBasicAgreement.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using Org.BouncyCastle.Math;
|
||||
|
||||
namespace Org.BouncyCastle.Crypto
|
||||
{
|
||||
/**
|
||||
* The basic interface that basic Diffie-Hellman implementations
|
||||
* conforms to.
|
||||
*/
|
||||
public interface IBasicAgreement
|
||||
{
|
||||
/**
|
||||
* initialise the agreement engine.
|
||||
*/
|
||||
void Init(ICipherParameters parameters);
|
||||
|
||||
/**
|
||||
* given a public key from a given party calculate the next
|
||||
* message in the agreement sequence.
|
||||
*/
|
||||
BigInteger CalculateAgreement(ICipherParameters pubKey);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user