- java.lang.Object
-
- java.lang.Enum<TlsConstants.SignatureScheme>
-
- net.luminis.tls.TlsConstants.SignatureScheme
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TlsConstants.SignatureScheme>
- Enclosing class:
- TlsConstants
public static enum TlsConstants.SignatureScheme extends java.lang.Enum<TlsConstants.SignatureScheme>
-
-
Enum Constant Summary
-
Field Summary
Fields Modifier and Type Field Description shortvalue
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TlsConstants.SignatureSchemevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TlsConstants.SignatureScheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
rsa_pkcs1_sha256
public static final TlsConstants.SignatureScheme rsa_pkcs1_sha256
-
rsa_pkcs1_sha384
public static final TlsConstants.SignatureScheme rsa_pkcs1_sha384
-
rsa_pkcs1_sha512
public static final TlsConstants.SignatureScheme rsa_pkcs1_sha512
-
ecdsa_secp256r1_sha256
public static final TlsConstants.SignatureScheme ecdsa_secp256r1_sha256
-
ecdsa_secp384r1_sha384
public static final TlsConstants.SignatureScheme ecdsa_secp384r1_sha384
-
ecdsa_secp521r1_sha512
public static final TlsConstants.SignatureScheme ecdsa_secp521r1_sha512
-
rsa_pss_rsae_sha256
public static final TlsConstants.SignatureScheme rsa_pss_rsae_sha256
-
rsa_pss_rsae_sha384
public static final TlsConstants.SignatureScheme rsa_pss_rsae_sha384
-
rsa_pss_rsae_sha512
public static final TlsConstants.SignatureScheme rsa_pss_rsae_sha512
-
ed25519
public static final TlsConstants.SignatureScheme ed25519
-
ed448
public static final TlsConstants.SignatureScheme ed448
-
rsa_pss_pss_sha256
public static final TlsConstants.SignatureScheme rsa_pss_pss_sha256
-
rsa_pss_pss_sha384
public static final TlsConstants.SignatureScheme rsa_pss_pss_sha384
-
rsa_pss_pss_sha512
public static final TlsConstants.SignatureScheme rsa_pss_pss_sha512
-
rsa_pkcs1_sha1
public static final TlsConstants.SignatureScheme rsa_pkcs1_sha1
-
ecdsa_sha1
public static final TlsConstants.SignatureScheme ecdsa_sha1
-
-
Method Detail
-
values
public static TlsConstants.SignatureScheme[] 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 (TlsConstants.SignatureScheme c : TlsConstants.SignatureScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TlsConstants.SignatureScheme 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
-
-