12 lines
280 B
Java
12 lines
280 B
Java
|
package org.bouncycastle.crypto.ec;
|
||
|
|
||
|
import org.bouncycastle.crypto.CipherParameters;
|
||
|
import org.bouncycastle.math.ec.ECPoint;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface ECDecryptor {
|
||
|
ECPoint decrypt(ECPair eCPair);
|
||
|
|
||
|
void init(CipherParameters cipherParameters);
|
||
|
}
|