// -*- mode: rust; -*- // // This file is part of curve25519-dalek. // Copyright (c) 2016-2021 isis lovecruft // Copyright (c) 2016-2019 Henry de Valence // See LICENSE for licensing information. // // Authors: // - isis agora lovecruft // - Henry de Valence #![doc = include_str!("../../../../docs/avx2-notes.md")] pub(crate) mod field; pub(crate) mod edwards; pub(crate) mod constants; pub(crate) use self::edwards::{CachedPoint, ExtendedPoint};