mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 05:47:40 +03:00
Fix rustls hangs during handshake #103
This commit is contained in:
parent
cb356517a4
commit
6ae0cd002d
7 changed files with 76 additions and 8 deletions
|
@ -3,7 +3,7 @@ use std::{fs::File, io, io::BufReader, sync::Arc};
|
|||
use ntex::service::{fn_service, pipeline_factory};
|
||||
use ntex::{codec, io::filter, io::Io, server, util::Either};
|
||||
use ntex_tls::rustls::TlsAcceptor;
|
||||
use rustls_pemfile::{certs, pkcs8_private_keys};
|
||||
use rustls_pemfile::{certs, rsa_private_keys};
|
||||
use tls_rust::{Certificate, PrivateKey, ServerConfig};
|
||||
|
||||
#[ntex::main]
|
||||
|
@ -17,7 +17,7 @@ async fn main() -> io::Result<()> {
|
|||
let cert_file =
|
||||
&mut BufReader::new(File::open("../ntex-tls/examples/cert.pem").unwrap());
|
||||
let key_file = &mut BufReader::new(File::open("../ntex-tls/examples/key.pem").unwrap());
|
||||
let keys = PrivateKey(pkcs8_private_keys(key_file).unwrap().remove(0));
|
||||
let keys = PrivateKey(rsa_private_keys(key_file).unwrap().remove(0));
|
||||
let cert_chain = certs(cert_file)
|
||||
.unwrap()
|
||||
.iter()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue