com.unboundid.util.ssl.cert.PublicKeyAlgorithmIdentifier 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-2023 Ping Identity Corporation
* All Rights Reserved.
*/
/*
* Copyright 2017-2023 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-2023 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.util.NotNull;
import com.unboundid.util.Nullable;
import com.unboundid.util.OID;
import com.unboundid.util.ThreadSafety;
import com.unboundid.util.ThreadSafetyLevel;
/**
* This enum defines a set of public key algorithm names and OIDs.
*/
@ThreadSafety(level=ThreadSafetyLevel.COMPLETELY_THREADSAFE)
public enum PublicKeyAlgorithmIdentifier
{
/**
* The algorithm identifier for the RSA public key algorithm. This identifier
* is defined in RFC 3279 section 2.3.1.
*/
RSA("1.2.840.113549.1.1.1", "RSA"),
/**
* The algorithm identifier for the DSA public key algorithm. This identifier
* is defined in RFC 3279 section 2.3.2.
*/
DSA("1.2.840.10040.4.1", "DSA"),
/**
* The algorithm identifier for the Diffie-Hellman public key algorithm. This
* identifier is defined in RFC 3279 section 2.3.3.
*/
DIFFIE_HELLMAN("1.2.840.10046.2.1", "DiffieHellman"),
/**
* The algorithm identifier for the elliptic curve public key algorithm. This
* identifier is defined in RFC 3279 section 2.3.5.
*/
EC("1.2.840.10045.2.1", "EC");
// The OID for this public key algorithm.
@NotNull private final OID oid;
// The name for this public key algorithm.
@NotNull private final String name;
/**
* Creates a new public key algorithm identifier with the provided
* information.
*
* @param oidString The string representation of the OID for this public key
* algorithm.
* @param name The name for this public key algorithm.
*/
PublicKeyAlgorithmIdentifier(@NotNull final String oidString,
@NotNull final String name)
{
this.name = name;
oid = new OID(oidString);
}
/**
* Retrieves the OID for this public key algorithm.
*
* @return The OID for this public key algorithm.
*/
@NotNull()
public OID getOID()
{
return oid;
}
/**
* Retrieves the name for this public key algorithm.
*
* @return The name for this public key algorithm.
*/
@NotNull()
public String getName()
{
return name;
}
/**
* Retrieves the public key algorithm identifier instance with the specified
* OID.
*
* @param oid The OID for the public key algorithm identifier instance to
* retrieve.
*
* @return The appropriate public key algorithm identifier instance, or
* {@code null} if the provided OID does not reference a known
* public key algorithm identifier.
*/
@Nullable()
public static PublicKeyAlgorithmIdentifier forOID(@NotNull final OID oid)
{
for (final PublicKeyAlgorithmIdentifier v : values())
{
if (v.oid.equals(oid))
{
return v;
}
}
return null;
}
/**
* Retrieves the public key algorithm identifier instance with the specified
* name.
*
* @param name The name of the public key algorithm identifier instance to
* retrieve.
*
* @return The appropriate public key algorithm identifier instance, or
* {@code null} if the provided name does not reference a known
* public key algorithm identifier.
*/
@Nullable()
public static PublicKeyAlgorithmIdentifier forName(@NotNull final String name)
{
final String preparedName = prepareName(name);
for (final PublicKeyAlgorithmIdentifier v : values())
{
if (v.name.equalsIgnoreCase(preparedName))
{
return v;
}
}
return null;
}
/**
* Prepares the provided name to be used by the {@link #forName(String)}
* method. All spaces, dashes, and underscores will be removed.
*
* @param name The name to be compared.
*
* @return The prepared version of the provided name.
*/
@NotNull()
private static String prepareName(@NotNull final String name)
{
final StringBuilder buffer = new StringBuilder(name.length());
for (final char c : name.toCharArray())
{
switch (c)
{
case ' ':
case '-':
case '_':
// This character will be omitted.
break;
default:
// This character will be used.
buffer.append(c);
}
}
return buffer.toString();
}
/**
* Retrieves the human-readable name for the public key algorithm identifier
* value with the provided OID, or a string representation of the OID if there
* is no value with that OID.
*
* @param oid The OID for the public key algorithm identifier to retrieve.
*
* @return The human-readable name for the public key algorithm identifier
* value with the provided OID, or a string representation of the OID
* if there is no value with that OID.
*/
@NotNull()
public static String getNameOrOID(@NotNull final OID oid)
{
final PublicKeyAlgorithmIdentifier id = forOID(oid);
if (id == null)
{
return oid.toString();
}
else
{
return id.name;
}
}
/**
* Retrieves a string representation of this public key algorithm identifier.
*
* @return A string representation of this public key algorithm identifier.
*/
@Override()
@NotNull()
public String toString()
{
return name;
}
}