mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-04 21:37:58 +03:00
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:
parent
b71cad76bf
commit
5414e2096a
14 changed files with 114 additions and 137 deletions
|
@ -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>);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue