|
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();
|
|
}
|