what-the-bank/sources/org/bouncycastle/crypto/params/AsymmetricKeyParameter.java

17 lines
370 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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;
}
}