24 lines
876 B
Java
24 lines
876 B
Java
|
package org.bouncycastle.jcajce.provider.config;
|
||
|
|
||
|
import java.io.OutputStream;
|
||
|
import java.security.KeyStore;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class PKCS12StoreParameter extends org.bouncycastle.jcajce.PKCS12StoreParameter {
|
||
|
public PKCS12StoreParameter(OutputStream outputStream, char[] cArr, boolean z) {
|
||
|
super(outputStream, new KeyStore.PasswordProtection(cArr), z);
|
||
|
}
|
||
|
|
||
|
public PKCS12StoreParameter(OutputStream outputStream, char[] cArr) {
|
||
|
super(outputStream, cArr, false);
|
||
|
}
|
||
|
|
||
|
public PKCS12StoreParameter(OutputStream outputStream, KeyStore.ProtectionParameter protectionParameter, boolean z) {
|
||
|
super(outputStream, protectionParameter, z);
|
||
|
}
|
||
|
|
||
|
public PKCS12StoreParameter(OutputStream outputStream, KeyStore.ProtectionParameter protectionParameter) {
|
||
|
super(outputStream, protectionParameter, false);
|
||
|
}
|
||
|
}
|