We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14f2309 commit 4a9389dCopy full SHA for 4a9389d
ports/raspberrypi/common-hal/ssl/SSLSocket.c
@@ -172,12 +172,10 @@ ssl_sslsocket_obj_t *common_hal_ssl_sslcontext_wrap_socket(ssl_sslcontext_obj_t
172
}
173
174
if (self->crt_bundle_attach != NULL) {
175
- mp_printf(&mp_plat_print, "attaching bundle\n");
176
mbedtls_ssl_conf_authmode(&o->conf, MBEDTLS_SSL_VERIFY_REQUIRED);
177
self->crt_bundle_attach(&o->conf);
178
// } else if(self->cacert_buf && self->cacert_bytes) { // TODO: user bundle
179
} else {
180
- mp_printf(&mp_plat_print, "yolo\n");
181
mbedtls_ssl_conf_authmode(&o->conf, MBEDTLS_SSL_VERIFY_NONE);
182
183
mbedtls_ssl_conf_rng(&o->conf, mbedtls_ctr_drbg_random, &o->ctr_drbg);
0 commit comments