blob: 6993899ac2ccd85379801ff23cf0320f4aee8b2b [file] [log] [blame]
package org.bouncycastle.pqc.crypto;
import org.bouncycastle.crypto.params.AsymmetricKeyParameter;
/**
* Interface for NewHope style key material exchange generators.
*/
public interface ExchangePairGenerator
{
/**
* Generate an exchange pair based on the sender public key.
*
* @param senderPublicKey the public key of the exchange initiator.
* @return An ExchangePair derived from the sender public key.
*/
ExchangePair GenerateExchange(AsymmetricKeyParameter senderPublicKey);
}