17 lines
370 B
Java
17 lines
370 B
Java
|
package org.bouncycastle.crypto.params;
|
||
|
|
||
|
import org.bouncycastle.crypto.CipherParameters;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class AsymmetricKeyParameter implements CipherParameters {
|
||
|
boolean privateKey;
|
||
|
|
||
|
public boolean isPrivate() {
|
||
|
return this.privateKey;
|
||
|
}
|
||
|
|
||
|
public AsymmetricKeyParameter(boolean z) {
|
||
|
this.privateKey = z;
|
||
|
}
|
||
|
}
|