what-the-bank/sources/org/bouncycastle/crypto/ec/ECEncryptor.java

12 lines
281 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.crypto.ec;
import org.bouncycastle.crypto.CipherParameters;
import org.bouncycastle.math.ec.ECPoint;
/* loaded from: classes6.dex */
public interface ECEncryptor {
ECPair encrypt(ECPoint eCPoint);
void init(CipherParameters cipherParameters);
}