Adi Roiban
Adi Roiban
My comment is the same: Can you please suggest a possible API? How do you expect to be able to disalbe this? ----------- Also, you can always explicitly hide the...
I think that if you use `--add-header` in `twistd` you should be able to "Edit" the existing `Server` header. Have you tried that ? Do you get 2 separate `Server`...
thanks for the update. Ok. then let's focus on the `twistd web` functionality I would say that if you do `twistd web --add-header="Server: value"` it should only generate one header....
The default headers are * `Date` * `Server` * `Content-Length` * `Content-Type` * and maybe a few others Is there a use case in which you would want to add...
Thanks for including `OpenSSL 3.2.1` in `42.0.2` I am looking into argon2 support, so that I can read Putty v3 SSH key files. I see that `argon2` support in `cryptography`...
I can see that `OSSL_PARAM` is available since version 0.9.100 https://github.com/sfackler/rust-openssl/pull/2144 I guess that is just the low-level binding API. So it also needs https://www.openssl.org/docs/manmaster/man3/EVP_KDF.html this bindings ---------- Why not...
I am also looking into this in order to implement the security check for an FTPS data connection. For the OpenSSL API I found [SSL_SESSION_get_id](https://www.openssl.org/docs/man1.1.1/man3/SSL_SESSION_get_id.html) I can see that pypopenssl...
I can give it a try. I tried to read the `cryptography` code for the binding ... but at a first look, I could't find the place where the binding...
I have continue working on this. On client-side for TLS 1.2 it looks like `SSL.Connection.get_session()` and `SSL.Connection.set_session()` are enought to implement client-side TLS session resumption. Now, the actual session ID...
It looks like `SSL_SESSION_get_id` was removed here (https://github.com/pyca/cryptography/pull/8340 ) and I think the removal was released in 40.0.0 ------- I think that the critical API that should be available in...