curve25519_dalek/backend/vector/mod.rs
1// -*- mode: rust; -*-
2//
3// This file is part of curve25519-dalek.
4// Copyright (c) 2016-2021 isis lovecruft
5// Copyright (c) 2016-2019 Henry de Valence
6// See LICENSE for licensing information.
7//
8// Authors:
9// - isis agora lovecruft <isis@patternsinthevoid.net>
10// - Henry de Valence <hdevalence@hdevalence.ca>
11
12#![doc = include_str!("../../../docs/parallel-formulas.md")]
13
14#[allow(missing_docs)]
15pub mod packed_simd;
16
17pub mod avx2;
18
19#[cfg(nightly)]
20pub mod ifma;
21
22pub mod scalar_mul;