ossl 1.5.1

OpenSSL version 3+ bindings to modern EVP APIs
Documentation
// Copyright 2025 Simo Sorce
// See LICENSE.txt file for terms

#[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();
        // Ignore the errors to load legacy provider
        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;