//! Internal utility functions for the dcrypt library
//!//! This crate provides internal utilities and helpers that are used by
//! other dcrypt crates but are not part of the public API.
#![cfg_attr(not(feature ="std"), no_std)]pubmodconstant_time;pubmodendian;pubmodzeroing;pubuseconstant_time::*;pubuseendian::*;pubusezeroing::*;#[cfg(feature ="simd")]pubmodsimd{//! SIMD utility functions
/// Check if SIMD is available
pubfnis_available()->bool{#[cfg(target_feature ="sse2")]{true}#[cfg(not(target_feature ="sse2"))]{false}}}