Enum SSLSignatureScheme

    • Enum Constant Detail

      • 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_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_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 name
        java.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 name
        java.lang.NullPointerException - if the argument is null