Brian Adkins
Brian Adkins
Here is the SSL-Session successfully established with the OpenSSL 1.1.1 s_client: ``` SSL-Session: Protocol : TLSv1.2 Cipher : ECDHE-RSA-AES256-GCM-SHA384 Session-ID: 000200... Session-ID-ctx: Master-Key: A2B... PSK identity: None PSK identity hint:...
Out of curiosity, I tried this from my Raspberry Pi `OpenSSL 1.1.1n 15 Mar 2022` and it failed similarly to the 3.0.2 with the following error: ``` 1996427328:error:14094438:SSL routines:ssl3_read_bytes:tlsv1 alert...
Since it works with 1.1.1 and fails with 1.1.1n and 3.0.2, is it possible to get a diff of what they're sending? I don't control the server, so I'll need...
FYI - There is now a frog channel in the Racket Slack.
With respect to function calls, one of the things I love about Scheme is: `((get-my-fun a b) c d)` So, hopefully we'd still be able to do this. For example:...
I do like how Haskell handles this i.e. functions either being defined to accept a tuple, or to be defined as curried functions which can be partially applied. Although Matthew...
I misunderstood your suggestion. If we're not allowing curried function definitions, then it seems neither `add x y z` nor `(add x y z)` are keeping with the spirit of...
I love the idea of an annual Racket survey.
https://julialang.org/images/2019-julia-user-developer-survey.pdf
I ran `openssl s_client -msg -security_debug_verbose -connect :443 -trace` Here is a [gist](https://gist.github.com/lojic/de381624aa28c4b4b63690983d720948) with stdout and stderr. Is there any other info I can provide to help solve this issue?...