blob: a44e1ab9c0b62f3bf7ec543446c93d19b187f362 [file] [log] [blame]
/* GENERATED SOURCE. DO NOT MODIFY. */
package com.android.org.bouncycastle.jcajce.provider.config;
import java.io.OutputStream;
import java.security.KeyStore;
import java.security.KeyStore.ProtectionParameter;
/**
* @deprecated use org.bouncycastle.jcajce.PKCS12StoreParameter
* @hide This class is not part of the Android public SDK API
*/
public class PKCS12StoreParameter
extends com.android.org.bouncycastle.jcajce.PKCS12StoreParameter
{
public PKCS12StoreParameter(OutputStream out, char[] password)
{
super(out, password, false);
}
public PKCS12StoreParameter(OutputStream out, ProtectionParameter protectionParameter)
{
super(out, protectionParameter, false);
}
public PKCS12StoreParameter(OutputStream out, char[] password, boolean forDEREncoding)
{
super(out, new KeyStore.PasswordProtection(password), forDEREncoding);
}
public PKCS12StoreParameter(OutputStream out, ProtectionParameter protectionParameter, boolean forDEREncoding)
{
super(out, protectionParameter, forDEREncoding);
}
}