11 lines
244 B
Java
11 lines
244 B
Java
|
package org.bouncycastle.crypto.ec;
|
||
|
|
||
|
import org.bouncycastle.crypto.CipherParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface ECPairTransform {
|
||
|
void init(CipherParameters cipherParameters);
|
||
|
|
||
|
ECPair transform(ECPair eCPair);
|
||
|
}
|