#[cfg(not(feature = "fips"))]
static TEST_CONTEXT: ::std::sync::LazyLock<crate::OsslContext> =
::std::sync::LazyLock::new(|| crate::OsslContext::new_lib_ctx());
#[cfg(not(feature = "fips"))]
pub fn test_ossl_context() -> &'static crate::OsslContext {
&TEST_CONTEXT
}
#[cfg(all(not(feature = "fips"), feature = "rfc9580"))]
static TEST_LEGACY_CONTEXT: ::std::sync::LazyLock<crate::OsslContext> =
::std::sync::LazyLock::new(|| {
let mut context = crate::OsslContext::new_lib_ctx();
let _ = context.load_legacy_provider();
context
});
#[cfg(feature = "rfc9580")]
pub fn test_ossl_legacy_context() -> &'static crate::OsslContext {
#[cfg(feature = "fips")]
{
panic!("The legacy provider is not available in FIPS build")
}
#[cfg(not(feature = "fips"))]
{
&TEST_LEGACY_CONTEXT
}
}
#[cfg(not(feature = "fips"))]
mod aes;
#[cfg(not(feature = "fips"))]
mod brainpool;
#[cfg(feature = "rfc9580")]
mod dsa;
#[cfg(feature = "rfc9580")]
mod cipher;
#[cfg(feature = "rfc9580")]
mod digest;