com.unboundid.util.ssl.cert.SubjectKeyIdentifierExtension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unboundid-ldapsdk Show documentation
Show all versions of unboundid-ldapsdk Show documentation
The UnboundID LDAP SDK for Java is a fast, comprehensive, and easy-to-use
Java API for communicating with LDAP directory servers and performing
related tasks like reading and writing LDIF, encoding and decoding data
using base64 and ASN.1 BER, and performing secure communication. This
package contains the Standard Edition of the LDAP SDK, which is a
complete, general-purpose library for communicating with LDAPv3 directory
servers.
/*
* Copyright 2017-2022 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright 2017-2022 Ping Identity Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/*
* Copyright (C) 2017-2022 Ping Identity Corporation
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License (GPLv2 only)
* or the terms of the GNU Lesser General Public License (LGPLv2.1 only)
* as published by the Free Software Foundation.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see .
*/
package com.unboundid.util.ssl.cert;
import com.unboundid.asn1.ASN1OctetString;
import com.unboundid.util.Debug;
import com.unboundid.util.NotMutable;
import com.unboundid.util.NotNull;
import com.unboundid.util.OID;
import com.unboundid.util.StaticUtils;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
import static com.unboundid.util.ssl.cert.CertMessages.*;
/**
* This class provides an implementation of the subject key identifier X.509
* certificate extension as described in
* RFC 5280 section 4.2.1.2.
* The OID for this extension is 2.5.29.14. The value is an octet string and is
* intended to identify the public key used by a certificate. The actual format
* of the key identifier is not specified, although RFC 5280 does specify a
* couple of possibilities.
*/
@NotMutable()
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public final class SubjectKeyIdentifierExtension
extends X509CertificateExtension
{
/**
* The OID (2.5.29.14) for subject key identifier extensions.
*/
@NotNull public static final OID SUBJECT_KEY_IDENTIFIER_OID =
new OID("2.5.29.14");
/**
* The name of the message digest algorithm that will be used to generate a
* certificate's subject key identifier from its public key. Note that we're
* using SHA-1 rather than something better (like SHA-256) because it appears
* that the Microsoft CA cannot handle a 256-bit identifier but will accept a
* 160-bit identifier.
*/
@NotNull static final String SUBJECT_KEY_IDENTIFIER_DIGEST_ALGORITHM =
"SHA-1";
/**
* The serial version UID for this serializable class.
*/
private static final long serialVersionUID = -7175921866230880172L;
// The key identifier for this extension.
@NotNull private final ASN1OctetString keyIdentifier;
/**
* Creates a new subject key identifier extension with the provided
* information.
*
* @param isCritical Indicates whether this extension should be
* considered critical.
* @param keyIdentifier The key identifier for this extension. It must not
* be {@code null}.
*/
SubjectKeyIdentifierExtension(final boolean isCritical,
@NotNull final ASN1OctetString keyIdentifier)
{
super(SUBJECT_KEY_IDENTIFIER_OID, isCritical,
keyIdentifier.encode());
this.keyIdentifier = keyIdentifier;
}
/**
* Creates a new subject key identifier extension from the provided generic
* extension.
*
* @param extension The extension to decode as a subject key identifier
* extension.
*
* @throws CertException If the provided extension cannot be decoded as a
* subject alternative name extension.
*/
SubjectKeyIdentifierExtension(
@NotNull final X509CertificateExtension extension)
throws CertException
{
super(extension);
try
{
keyIdentifier = ASN1OctetString.decodeAsOctetString(extension.getValue());
}
catch (final Exception e)
{
Debug.debugException(e);
throw new CertException(
ERR_SUBJECT_KEY_ID_EXTENSION_CANNOT_PARSE.get(
String.valueOf(extension), StaticUtils.getExceptionMessage(e)),
e);
}
}
/**
* Retrieves the key identifier for this extension.
*
* @return The key identifier for this extension.
*/
@NotNull()
public ASN1OctetString getKeyIdentifier()
{
return keyIdentifier;
}
/**
* {@inheritDoc}
*/
@Override()
@NotNull()
public String getExtensionName()
{
return INFO_SUBJECT_KEY_IDENTIFIER_EXTENSION_NAME.get();
}
/**
* {@inheritDoc}
*/
@Override()
public void toString(@NotNull final StringBuilder buffer)
{
buffer.append("SubjectKeyIdentifierExtension(oid='");
buffer.append(getOID());
buffer.append(", isCritical=");
buffer.append(isCritical());
buffer.append(", identifierBytes='");
StaticUtils.toHex(keyIdentifier.getValue(), ":", buffer);
buffer.append("')");
}
}