Package io.grpc.util

Enum AdvancedTlsX509TrustManager.Verification

    • Enum Constant Detail

      • CERTIFICATE_AND_HOST_NAME_VERIFICATION

        public static final AdvancedTlsX509TrustManager.Verification CERTIFICATE_AND_HOST_NAME_VERIFICATION
        This is the DEFAULT and RECOMMENDED mode for most applications. Setting this on the client side performs both certificate and hostname verification, while setting it on the server side only performs certificate verification.
      • CERTIFICATE_ONLY_VERIFICATION

        public static final AdvancedTlsX509TrustManager.Verification CERTIFICATE_ONLY_VERIFICATION
        DANGEROUS: Use trusted credentials to verify the certificate, but clients will not verify the certificate is for the expected host. This setting is only appropriate when accompanied by proper additional peer identity checks set through SslSocketAndEnginePeerVerifier. Failing to do so will leave your applications vulnerable to MITM attacks. This setting has the same behavior on server-side as CERTIFICATE_AND_HOST_NAME_VERIFICATION.
      • INSECURELY_SKIP_ALL_VERIFICATION

        public static final AdvancedTlsX509TrustManager.Verification INSECURELY_SKIP_ALL_VERIFICATION
        DANGEROUS: This SHOULD be used by advanced user intended to implement the entire verification logic themselves AdvancedTlsX509TrustManager.SslSocketAndEnginePeerVerifier) themselves. This includes:
        1. Proper verification of the peer certificate chain
        2. Proper checks of the identity of the peer certificate
        Failing to do so will leave your application without any TLS-related protection. Keep in mind that any loaded trust certificates will be ignored when using this mode.
    • Method Detail

      • values

        public static AdvancedTlsX509TrustManager.Verification[] 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 (AdvancedTlsX509TrustManager.Verification c : AdvancedTlsX509TrustManager.Verification.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static AdvancedTlsX509TrustManager.Verification valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null