package org.bouncycastle.crypto.ec;
import org.bouncycastle.crypto.CipherParameters;
public interface ECPairTransform
{
void init(CipherParameters params);
ECPair transform(ECPair cipherText);
}
package org.bouncycastle.crypto.ec;
import org.bouncycastle.crypto.CipherParameters;
public interface ECPairTransform
{
void init(CipherParameters params);
ECPair transform(ECPair cipherText);
}