Search found 1 match

by prutek
Sun Jul 11, 2021 9:39 pm
Forum: ESP-IDF
Topic: how to disable server validation (CA)
Replies: 3
Views: 12662

Re: skip server validation seems not to work

skip_cert_common_name_check will not allow you to bypass TLS, it will only avoid checking the certificate's CN (so a possible mismatch would not fail validation). To completely disable the certificate check, you will need to go to ESP-TLS in menuconfig, enable "Allow potentially insecure options" a...