-
Hi,
There is now a `org.bouncycastle.tls` package that contains all necessary classes to create a TlsClient or TlsServer and so one in addition to the already existing `org.bouncycastle.crypto.tls`…
-
Capturing from https://github.com/ctz/hyper-rustls/pull/6#issuecomment-296398362:
> let people pass in a whole Arc, then they can do all the file IO and error handling outside TlsClient.
I would…
lucab updated
7 years ago
-
With the config:
```toml
max_width = 120
fn_call_style = "block"
```
this function is reformatted:
```diff
fn main() {⏎
- let hyper = Arc::new(Client::with_connector(HttpsConnector::ne…
-
TlsContext.exportKeyingMaterial fails with NullPointerException if method is called after handshake completion (id DTLSTransport retrieved) . This is because SecurityParameters are cleared in a finall…
-
This is kinda related to #77
I was testing some websocket requests and got that panic. I don't really know why it happens. What I did was just triggering multiple websocket upgrade requests with c…
-
Hi, was trying to use rustls (tokio-rustls). However, I can not make the handshake work.
I generated a CA key/cert and a server key/cert using OpenSSL. To verify the problem I used the tlsclient and …
maufl updated
7 years ago
-
WiFiClient does not support https
-
How do you use hyper-rustls with an http proxy? The following results an error.
```rust
let ssl = TlsClient::new();
let connector = HttpsConnector::new(ssl);
let proxy_config = ProxyConfig::new(…
zaari updated
7 years ago
-
### Basic Infos
#### Hardware
Hardware: ESP-8266 - Wemos D1 mini
Core Version: 2.1.0?
### Description
Hi, I'm sending data over WiFiClientSecure - everything works fine, but after a…
-
I have been been using a connection pool and it works just fine via HTTP. However, when using HTTPS observed a performance drop. Looking into it I noticed that for HTTP, connection are reused properly…