NnSslVerifyOption Enumerated Typeenum NnSslVerifyOption;
| Value | Description |
|---|---|
NNSSL_VERIFY_NONE |
Nothing specified |
NNSSL_VERIFY_COMMON_NAME |
Verify the server certificate's CommonName. |
NNSSL_VERIFY_ROOT_CA |
Verify the server certificate's RootCA. |
NNSSL_VERIFY_DATE |
Verify the server certificate's expiration date. |
NNSSL_VERIFY_SUBJECT_ALT_NAME |
Verify the server certificate's SubjectAlternativeName. |
NNSSL_VERIFY_EV |
Verify the server's Extended Verification (EV) Certificate. (Verification fails unless the server certificate is tied to an EV certificate.) |
NNSSL_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.) |
NNSSL_VERIFY_IGNORE |
Verify the certificate but ignore the results and connect anyway. |
NNSSL_GET_ALL_SERVER_CERT_CHAIN |
Save all of the certificate data from the certificate chain. |
Verification options.
CONFIDENTIAL