nn::ssl::Connection::DisableVerifyOptionForDebug Member Functionnn::Result DisableVerifyOptionForDebug( u32 excludeVerifyOptions );
| Name | Description | |
|---|---|---|
| in | excludeVerifyOptions | Options indicating which SSL verification methods to exclude. Specify a nn::ssl::VerifyOption enumerated type value representing the verification methods to exclude. (To exclude multiple values, set this argument to the bitwise OR of multiple values.)Currently, this argument can be set to the following values: nn::ssl::VERIFY_COMMON_NAME: Verifies that the certificate's CommonName value matches the host name specified with the AssignServer function. nn::ssl::VERIFY_SUBJECT_ALT_NAME: Gives priority to the certificate's SubjectAltName (if one exists) during CommonName verification.nn::ssl::VERIFY_ROOT_CA:Verifies the certificate's Root CA. |
Removes the SSL communication verification contents for the specified bits. The items that are verified by default were chosen for security reasons. Do not exclude any items from verification except for debugging purposes.
CONFIDENTIAL