blob: 19ee2677dc585050908b91e38ab9b0d7868c1050 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.internal.org.bouncycastle.crypto;
/**
* @hide This class is not part of the Android public SDK API
*/
public interface RawAgreement
{
void init(CipherParameters parameters);
int getAgreementSize();
void calculateAgreement(CipherParameters publicKey, byte[] buf, int off);
}