// -*- mode: rust; -*- // // This file is part of curve25519-dalek. // Copyright (c) 2016-2018 Isis Lovecruft, Henry de Valence // See LICENSE for licensing information. // // Authors: // - Isis Agora Lovecruft // - Henry de Valence pub mod window; pub mod variable_base; #[cfg(feature="precomputed_tables")] pub mod vartime_double_base; #[cfg(any(feature = "alloc", feature = "std"))] pub mod straus; #[cfg(any(feature = "alloc", feature = "std"))] pub mod vartime_straus;