Update rustls to 0.23.x (#311)

* ntex-tls: update rustls

* ntex-connect: update rustls to 0.23.x

* ntex: update rustls to 0.23.x

---------

Co-authored-by: Andrey Voronkov <andrey.voronkov@sbermarket.ru>
This commit is contained in:
Andrey Voronkov 2024-03-24 09:24:29 +03:00 committed by GitHub
parent b71cad76bf
commit 5414e2096a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
14 changed files with 114 additions and 137 deletions

View file

@ -2,7 +2,7 @@
use std::{cmp, io};
use ntex_io::WriteBuf;
use tls_rust::Certificate;
use tls_rust::pki_types::CertificateDer;
mod accept;
mod client;
@ -14,11 +14,11 @@ pub use self::server::TlsServerFilter;
/// Connection's peer cert
#[derive(Debug)]
pub struct PeerCert(pub Certificate);
pub struct PeerCert<'a>(pub CertificateDer<'a>);
/// Connection's peer cert chain
#[derive(Debug)]
pub struct PeerCertChain(pub Vec<Certificate>);
pub struct PeerCertChain<'a>(pub Vec<CertificateDer<'a>>);
pub(crate) struct Wrapper<'a, 'b>(&'a WriteBuf<'b>);