calvin2021y
calvin2021y
I post wrong options in op, the ios arm options is ```sh --enable-shared=no --enable-harden --enable-filesystem=no --enable-pwdbased=no --enable-ip-alt-name --enable-sni --enable-alpn --enable-truncatedhmac --enable-earlydata --enable-tlsv10=no --enable-oldtls=yes --enable-tlsv12=yes --enable-tls13 --enable-rsa --enable-psk-one-id --enable-session-ticket --enable-savesession --enable-sessioncerts...
I use `CURLOPT_SSL_CTX_FUNCTION` with curl, ```c CURLcode curl_sslctx_function(CURL *curl, void *sslctx, void *parm) { CURLcode rv = CURLE_ABORTED_BY_CALLBACK; int line = 0; (void)curl; (void)parm; switch(1) default : { int e...
I get `Problem with the SSL CA cert (path? access rights?)` for request with domain name. try with https://1.1.1.1/ has no problem.
change `--enable-sp=small` into `--enable-sp` not work. I just verify `wolfSSL_CTX_load_verify_buffer` is return `SSL_SUCCESS` from `CURLOPT_SSL_CTX_FUNCTION` the same CA `https://curl.se/ca/cacert-2023-05-30.pem` is used for all platform, ios X86 emulator work fine. please...
test with `--enable-smallstack` `https://8.8.8.8` get this error, `https://1.1.1.1` work fine. error from here: ```diff diff --git a/lib/vtls/wolfssl.c b/lib/vtls/wolfssl.c index 2928728..6938cb2 100644 --- a/lib/vtls/wolfssl.c +++ b/lib/vtls/wolfssl.c @@ -788,7 +788,7 @@ wolfssl_connect_step2(struct...
test `https://github.com/` work fine. but some domain will get error and `https://8.8.8.8` also get error
Yes, RSA & PKCS #1 SHA-384. RSA & PKCS #1 SHA-256.
there is a crash logs with IOS arm64 without `--enable-smallstack`, this is a clear sign some bugs in the RSA Function
> Yes. the crash happens in the RSA function, but it could be due to corruption somewhere else. > > Lets try different math implementations. Can replace `--enable-sp-math-all` with `--enable-fastmath`...
I switch back to openssl with CURL, work fine. let me know what I can do to fix this problem.