Actually expose SslEchKeys
This commit is contained in:
parent
156cf04c43
commit
cbdf963464
|
|
@ -87,8 +87,6 @@ use crate::pkey::{HasPrivate, PKeyRef, Params, Private};
|
|||
use crate::srtp::{SrtpProtectionProfile, SrtpProtectionProfileRef};
|
||||
use crate::ssl::bio::BioMethod;
|
||||
use crate::ssl::callbacks::*;
|
||||
#[cfg(not(feature = "fips"))]
|
||||
use crate::ssl::ech::SslEchKeys;
|
||||
use crate::ssl::error::InnerError;
|
||||
use crate::stack::{Stack, StackRef, Stackable};
|
||||
use crate::x509::store::{X509Store, X509StoreBuilderRef, X509StoreRef};
|
||||
|
|
@ -106,6 +104,8 @@ pub use self::async_callbacks::{
|
|||
pub use self::connector::{
|
||||
ConnectConfiguration, SslAcceptor, SslAcceptorBuilder, SslConnector, SslConnectorBuilder,
|
||||
};
|
||||
#[cfg(not(feature = "fips"))]
|
||||
pub use self::ech::{SslEchKeys, SslEchKeysRef};
|
||||
pub use self::error::{Error, ErrorCode, HandshakeError};
|
||||
|
||||
mod async_callbacks;
|
||||
|
|
|
|||
Loading…
Reference in New Issue