what-the-bank/sources/org/bouncycastle/jce/interfaces/IESKey.java

13 lines
263 B
Java
Raw Permalink Normal View History

2024-07-27 18:17:47 +07:00
package org.bouncycastle.jce.interfaces;
import java.security.Key;
import java.security.PrivateKey;
import java.security.PublicKey;
/* loaded from: classes6.dex */
public interface IESKey extends Key {
PrivateKey getPrivate();
PublicKey getPublic();
}