
net.sf.mmm.crypto.asymmetric.cert.CertificateConfigX509 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mmm-crypto-jce Show documentation
Show all versions of mmm-crypto-jce Show documentation
Library for simple and more secure usage of cryptography (JCA and JCE).
The newest version!
package net.sf.mmm.crypto.asymmetric.cert;
import net.sf.mmm.crypto.provider.SecurityProvider;
/**
* {@link CertificateConfig} for {@value #TYPE_X509}.
*
* @author Joerg Hohwiller (hohwille at users.sourceforge.net)
* @since 1.0.0
*/
public class CertificateConfigX509 extends CertificateConfig {
/** {@link #getType() Type} for X.509. */
public static final String TYPE_X509 = "X509";
/**
* The constructor.
*/
public CertificateConfigX509() {
this(null);
}
/**
* The constructor.
*
* @param provider the {@link SecurityProvider} to use.
*/
public CertificateConfigX509(SecurityProvider provider) {
super(TYPE_X509, provider);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy