nn::ssl::VerifyOption Enumerated Type

Syntax

enum VerifyOption;

Value

Value Description
VERIFY_NONE Nothing specified
VERIFY_COMMON_NAME Verify the server certificate's CommonName.
VERIFY_ROOT_CA Verify the server certificate's RootCA.
VERIFY_DATE Verify the server certificate's expiration date.
VERIFY_SUBJECT_ALT_NAME Verify the server certificate's SubjectAlternativeName.
VERIFY_EV Verify the server's Extended Verification (EV) Certificate. (Verification fails unless the server certificate is tied to an EV certificate.)
USE_SESSION_CACHE Reuse sessions. ("Session resumption." In other words, if you disconnect from and reconnect to the same host, the system will attempt to reuse the same session.)
VERIFY_IGNORE Verify the certificate but ignore the results and connect anyway.
GET_ALL_SERVER_CERT_CHAIN Save all of the certificate data from the certificate chain.

Description

Verification options.

Revision History

2010/11/10
Initial version.

CONFIDENTIAL