Enum CompositeSignaturesConstants.CompositeName
- java.lang.Object
-
- java.lang.Enum<CompositeSignaturesConstants.CompositeName>
-
- org.bouncycastle.jcajce.provider.asymmetric.compositesignatures.CompositeSignaturesConstants.CompositeName
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CompositeSignaturesConstants.CompositeName>
- Enclosing class:
- CompositeSignaturesConstants
public static enum CompositeSignaturesConstants.CompositeName extends java.lang.Enum<CompositeSignaturesConstants.CompositeName>
Enum of supported composited signature schemes. Each one corresponds to a value from supportedIdentifiers.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getId()
static CompositeSignaturesConstants.CompositeName
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CompositeSignaturesConstants.CompositeName[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MLDSA44_RSA2048_PSS_SHA256
public static final CompositeSignaturesConstants.CompositeName MLDSA44_RSA2048_PSS_SHA256
-
MLDSA44_RSA2048_PKCS15_SHA256
public static final CompositeSignaturesConstants.CompositeName MLDSA44_RSA2048_PKCS15_SHA256
-
MLDSA44_Ed25519_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA44_Ed25519_SHA512
-
MLDSA44_ECDSA_P256_SHA256
public static final CompositeSignaturesConstants.CompositeName MLDSA44_ECDSA_P256_SHA256
-
MLDSA44_ECDSA_brainpoolP256r1_SHA256
public static final CompositeSignaturesConstants.CompositeName MLDSA44_ECDSA_brainpoolP256r1_SHA256
-
MLDSA65_RSA3072_PSS_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA65_RSA3072_PSS_SHA512
-
MLDSA65_RSA3072_PKCS15_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA65_RSA3072_PKCS15_SHA512
-
MLDSA65_ECDSA_brainpoolP256r1_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA65_ECDSA_brainpoolP256r1_SHA512
-
MLDSA65_ECDSA_P256_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA65_ECDSA_P256_SHA512
-
MLDSA65_Ed25519_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA65_Ed25519_SHA512
-
MLDSA87_ECDSA_P384_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA87_ECDSA_P384_SHA512
-
MLDSA87_ECDSA_brainpoolP384r1_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA87_ECDSA_brainpoolP384r1_SHA512
-
MLDSA87_Ed448_SHA512
public static final CompositeSignaturesConstants.CompositeName MLDSA87_Ed448_SHA512
-
Falcon512_ECDSA_P256_SHA256
public static final CompositeSignaturesConstants.CompositeName Falcon512_ECDSA_P256_SHA256
-
Falcon512_ECDSA_brainpoolP256r1_SHA256
public static final CompositeSignaturesConstants.CompositeName Falcon512_ECDSA_brainpoolP256r1_SHA256
-
Falcon512_Ed25519_SHA512
public static final CompositeSignaturesConstants.CompositeName Falcon512_Ed25519_SHA512
-
-
Method Detail
-
values
public static CompositeSignaturesConstants.CompositeName[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CompositeSignaturesConstants.CompositeName c : CompositeSignaturesConstants.CompositeName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CompositeSignaturesConstants.CompositeName valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getId
public java.lang.String getId()
-
-