13 lines
263 B
Java
13 lines
263 B
Java
|
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();
|
||
|
}
|