2018-03-26 22:01:48 +00:00
|
|
|
// -*- mode: rust; -*-
|
|
|
|
|
//
|
|
|
|
|
// This file is part of curve25519-dalek.
|
2021-08-03 23:13:45 +00:00
|
|
|
// Copyright (c) 2016-2021 isis lovecruft
|
|
|
|
|
// Copyright (c) 2016-2019 Henry de Valence
|
2018-03-26 22:01:48 +00:00
|
|
|
// See LICENSE for licensing information.
|
|
|
|
|
//
|
|
|
|
|
// Authors:
|
2021-08-03 23:13:45 +00:00
|
|
|
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
2018-03-26 22:01:48 +00:00
|
|
|
// - Henry de Valence <hdevalence@hdevalence.ca>
|
|
|
|
|
|
|
|
|
|
pub mod variable_base;
|
2018-03-26 22:32:20 +00:00
|
|
|
|
2018-03-27 00:02:59 +00:00
|
|
|
pub mod vartime_double_base;
|
|
|
|
|
|
2019-02-12 19:36:34 +00:00
|
|
|
#[cfg(feature = "alloc")]
|
2018-03-26 22:32:20 +00:00
|
|
|
pub mod straus;
|
2019-02-12 19:36:34 +00:00
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
|
pub mod precomputed_straus;
|
2019-05-21 20:31:50 +00:00
|
|
|
|
|
|
|
|
#[cfg(feature = "alloc")]
|
|
|
|
|
pub mod pippenger;
|