Package org.mozilla.jss.ssl
Enum SSLSignatureScheme
- java.lang.Object
-
- java.lang.Enum<SSLSignatureScheme>
-
- org.mozilla.jss.ssl.SSLSignatureScheme
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SSLSignatureScheme>
public enum SSLSignatureScheme extends java.lang.Enum<SSLSignatureScheme>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ssl_sig_dsa_sha1
Deprecated, for removal: This API element is subject to removal in a future version.ssl_sig_dsa_sha256
ssl_sig_dsa_sha384
ssl_sig_dsa_sha512
ssl_sig_ecdsa_secp256r1_sha256
ssl_sig_ecdsa_secp384r1_sha384
ssl_sig_ecdsa_secp521r1_sha512
ssl_sig_ecdsa_sha1
Deprecated, for removal: This API element is subject to removal in a future version.ssl_sig_ed25519
ssl_sig_ed448
ssl_sig_none
ssl_sig_rsa_pkcs1_sha1
Deprecated, for removal: This API element is subject to removal in a future version.ssl_sig_rsa_pkcs1_sha1md5
Deprecated, for removal: This API element is subject to removal in a future version.ssl_sig_rsa_pkcs1_sha256
ssl_sig_rsa_pkcs1_sha384
ssl_sig_rsa_pkcs1_sha512
ssl_sig_rsa_pss_pss_sha256
ssl_sig_rsa_pss_pss_sha384
ssl_sig_rsa_pss_pss_sha512
ssl_sig_rsa_pss_rsae_sha256
ssl_sig_rsa_pss_rsae_sha384
ssl_sig_rsa_pss_rsae_sha512
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getValue()
static SSLSignatureScheme
valueOf(int value)
Returns the enum constant of this type with the specified name.static SSLSignatureScheme
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SSLSignatureScheme[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ssl_sig_none
public static final SSLSignatureScheme ssl_sig_none
-
ssl_sig_rsa_pkcs1_sha1
@Deprecated(since="5.0.1", forRemoval=true) public static final SSLSignatureScheme ssl_sig_rsa_pkcs1_sha1
Deprecated, for removal: This API element is subject to removal in a future version.
-
ssl_sig_rsa_pkcs1_sha256
public static final SSLSignatureScheme ssl_sig_rsa_pkcs1_sha256
-
ssl_sig_rsa_pkcs1_sha384
public static final SSLSignatureScheme ssl_sig_rsa_pkcs1_sha384
-
ssl_sig_rsa_pkcs1_sha512
public static final SSLSignatureScheme ssl_sig_rsa_pkcs1_sha512
-
ssl_sig_ecdsa_secp256r1_sha256
public static final SSLSignatureScheme ssl_sig_ecdsa_secp256r1_sha256
-
ssl_sig_ecdsa_secp384r1_sha384
public static final SSLSignatureScheme ssl_sig_ecdsa_secp384r1_sha384
-
ssl_sig_ecdsa_secp521r1_sha512
public static final SSLSignatureScheme ssl_sig_ecdsa_secp521r1_sha512
-
ssl_sig_rsa_pss_rsae_sha256
public static final SSLSignatureScheme ssl_sig_rsa_pss_rsae_sha256
-
ssl_sig_rsa_pss_rsae_sha384
public static final SSLSignatureScheme ssl_sig_rsa_pss_rsae_sha384
-
ssl_sig_rsa_pss_rsae_sha512
public static final SSLSignatureScheme ssl_sig_rsa_pss_rsae_sha512
-
ssl_sig_ed25519
public static final SSLSignatureScheme ssl_sig_ed25519
-
ssl_sig_ed448
public static final SSLSignatureScheme ssl_sig_ed448
-
ssl_sig_rsa_pss_pss_sha256
public static final SSLSignatureScheme ssl_sig_rsa_pss_pss_sha256
-
ssl_sig_rsa_pss_pss_sha384
public static final SSLSignatureScheme ssl_sig_rsa_pss_pss_sha384
-
ssl_sig_rsa_pss_pss_sha512
public static final SSLSignatureScheme ssl_sig_rsa_pss_pss_sha512
-
ssl_sig_dsa_sha1
@Deprecated(since="5.0.1", forRemoval=true) public static final SSLSignatureScheme ssl_sig_dsa_sha1
Deprecated, for removal: This API element is subject to removal in a future version.
-
ssl_sig_dsa_sha256
public static final SSLSignatureScheme ssl_sig_dsa_sha256
-
ssl_sig_dsa_sha384
public static final SSLSignatureScheme ssl_sig_dsa_sha384
-
ssl_sig_dsa_sha512
public static final SSLSignatureScheme ssl_sig_dsa_sha512
-
ssl_sig_ecdsa_sha1
@Deprecated(since="5.0.1", forRemoval=true) public static final SSLSignatureScheme ssl_sig_ecdsa_sha1
Deprecated, for removal: This API element is subject to removal in a future version.
-
ssl_sig_rsa_pkcs1_sha1md5
@Deprecated(since="5.0.1", forRemoval=true) public static final SSLSignatureScheme ssl_sig_rsa_pkcs1_sha1md5
Deprecated, for removal: This API element is subject to removal in a future version.
-
-
Method Detail
-
values
public static SSLSignatureScheme[] 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 (SSLSignatureScheme c : SSLSignatureScheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SSLSignatureScheme 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
-
getValue
public int getValue()
-
valueOf
public static SSLSignatureScheme valueOf(int value)
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:
value
- 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
-
-