14 lines
314 B
Java
14 lines
314 B
Java
|
package org.bouncycastle.jce.interfaces;
|
||
|
|
||
|
import java.security.PrivateKey;
|
||
|
import java.security.PublicKey;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface MQVPrivateKey extends PrivateKey {
|
||
|
PrivateKey getEphemeralPrivateKey();
|
||
|
|
||
|
PublicKey getEphemeralPublicKey();
|
||
|
|
||
|
PrivateKey getStaticPrivateKey();
|
||
|
}
|