poly1305/backend.rs
1//! Poly1305 backends
2
3#[cfg(all(
4 any(target_arch = "x86", target_arch = "x86_64"),
5 not(poly1305_backend = "soft")
6))]
7pub(crate) mod avx2;
8
9#[cfg(all(
10 any(target_arch = "x86", target_arch = "x86_64"),
11 not(poly1305_backend = "soft")
12))]
13pub(crate) mod autodetect;
14
15pub(crate) mod soft;