blob: 932f5b6b13fe76b14219f27cebaee9759f421a7b [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.crypto;
import java.math.BigInteger;
/**
* The basic interface that basic Diffie-Hellman implementations
* conforms to.
* @hide This class is not part of the Android public SDK API
*/
public interface BasicAgreement
{
/**
* initialise the agreement engine.
*/
void init(CipherParameters param);
/**
* return the field size for the agreement algorithm in bytes.
*/
int getFieldSize();
/**
* given a public key from a given party calculate the next
* message in the agreement sequence.
*/
BigInteger calculateAgreement(CipherParameters pubKey);
}