org.xwiki.crypto.pkix.internal.extension.BcX509Extensions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-commons-crypto-pkix Show documentation
Show all versions of xwiki-commons-crypto-pkix Show documentation
Provides X.509 certificates management
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.crypto.pkix.internal.extension;
import java.io.IOException;
import java.util.ArrayList;
import java.util.EnumSet;
import java.util.Enumeration;
import java.util.List;
import org.bouncycastle.asn1.ASN1ObjectIdentifier;
import org.bouncycastle.asn1.x509.AuthorityKeyIdentifier;
import org.bouncycastle.asn1.x509.BasicConstraints;
import org.bouncycastle.asn1.x509.ExtendedKeyUsage;
import org.bouncycastle.asn1.x509.Extension;
import org.bouncycastle.asn1.x509.Extensions;
import org.bouncycastle.asn1.x509.GeneralNames;
import org.bouncycastle.asn1.x509.SubjectKeyIdentifier;
import org.xwiki.crypto.pkix.params.x509certificate.extension.ExtendedKeyUsages;
import org.xwiki.crypto.pkix.params.x509certificate.extension.KeyUsage;
import org.xwiki.crypto.pkix.params.x509certificate.extension.X509Extensions;
import org.xwiki.crypto.pkix.params.x509certificate.extension.X509GeneralName;
/**
* Set of X.509 extensions.
*
* @version $Id: 7ee582f9da63d4fc8bc5ecd18fd6dde0726f1929 $
* @since 5.4
*/
public class BcX509Extensions implements X509Extensions
{
private final Extensions extensions;
/**
* Build an extension set based on a Bouncy Castle one.
*
* @param extensions a Bouncy Castle extensions set.
*/
public BcX509Extensions(Extensions extensions)
{
this.extensions = extensions;
}
/**
* @return the bouncy castle wrapped object.
*/
public Extensions getExtensions()
{
return this.extensions;
}
@Override
public byte[] getExtensionValue(String oid)
{
Extension ext = this.extensions.getExtension(new ASN1ObjectIdentifier(oid));
if (ext == null) {
return null;
}
return ext.getExtnValue().getOctets();
}
@Override
public boolean isCritical(String oid)
{
Extension ext = this.extensions.getExtension(new ASN1ObjectIdentifier(oid));
return ext != null && ext.isCritical();
}
@Override
public String[] getExtensionOID()
{
List oids = new ArrayList<>();
@SuppressWarnings("unchecked")
Enumeration extOids = this.extensions.oids();
while (extOids.hasMoreElements()) {
oids.add(extOids.nextElement().getId());
}
return oids.toArray(new String[oids.size()]);
}
@Override
public String[] getCriticalExtensionOID()
{
ASN1ObjectIdentifier[] asnoids = this.extensions.getCriticalExtensionOIDs();
return toStringArray(asnoids);
}
@Override
public String[] getNonCriticalExtensionOID()
{
ASN1ObjectIdentifier[] asnoids = this.extensions.getNonCriticalExtensionOIDs();
return toStringArray(asnoids);
}
private String[] toStringArray(ASN1ObjectIdentifier[] asnoids)
{
String[] oids = new String[asnoids.length];
for (int i = 0; i < asnoids.length; i++) {
oids[i] = asnoids[i].getId();
}
return oids;
}
@Override
public byte[] getEncoded() throws IOException
{
return this.extensions.getEncoded();
}
@Override
public boolean hasCertificateAuthorityBasicConstraints()
{
BasicConstraints bc = BasicConstraints.fromExtensions(this.extensions);
return bc != null && bc.isCA();
}
@Override
public int getBasicConstraintsPathLen()
{
BasicConstraints bc = BasicConstraints.fromExtensions(this.extensions);
return (bc != null) ? bc.getPathLenConstraint().intValue() : -1;
}
@Override
public EnumSet getKeyUsage()
{
return BcExtensionUtils.getSetOfKeyUsage(org.bouncycastle.asn1.x509.KeyUsage.fromExtensions(this.extensions));
}
@Override
public ExtendedKeyUsages getExtendedKeyUsage()
{
return BcExtensionUtils.getExtendedKeyUsages(ExtendedKeyUsage.fromExtensions(this.extensions));
}
@Override
public byte[] getAuthorityKeyIdentifier()
{
AuthorityKeyIdentifier id = AuthorityKeyIdentifier.fromExtensions(this.extensions);
return (id != null) ? id.getKeyIdentifier() : null;
}
@Override
public byte[] getSubjectKeyIdentifier()
{
SubjectKeyIdentifier id = SubjectKeyIdentifier.fromExtensions(this.extensions);
return (id != null) ? id.getKeyIdentifier() : null;
}
@Override
public List getSubjectAltName()
{
return BcExtensionUtils.getX509GeneralNames(GeneralNames.fromExtensions(this.extensions,
Extension.subjectAlternativeName));
}
@Override
public List getIssuerAltName()
{
return BcExtensionUtils.getX509GeneralNames(GeneralNames.fromExtensions(this.extensions,
Extension.issuerAlternativeName));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy