mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-04 20:24:10 +00:00
Make cargodoc happy
This commit is contained in:
parent
1b6fee354d
commit
996b1e9077
2 changed files with 10 additions and 0 deletions
|
|
@ -99,6 +99,7 @@ fn get_selected_backend() -> BackendKind {
|
|||
BackendKind::Serial
|
||||
}
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub fn pippenger_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
||||
where
|
||||
|
|
@ -209,6 +210,7 @@ impl VartimePrecomputedStraus {
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub fn straus_multiscalar_mul<I, J>(scalars: I, points: J) -> EdwardsPoint
|
||||
where
|
||||
|
|
@ -249,6 +251,7 @@ where
|
|||
}
|
||||
}
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub fn straus_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
||||
where
|
||||
|
|
|
|||
|
|
@ -9,15 +9,22 @@
|
|||
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||||
// - Henry de Valence <hdevalence@hdevalence.ca>
|
||||
|
||||
//! Implementations of various multiplication algorithms for the SIMD backends.
|
||||
|
||||
#[allow(missing_docs)]
|
||||
pub mod variable_base;
|
||||
|
||||
#[allow(missing_docs)]
|
||||
pub mod vartime_double_base;
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub mod straus;
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub mod precomputed_straus;
|
||||
|
||||
#[allow(missing_docs)]
|
||||
#[cfg(feature = "alloc")]
|
||||
pub mod pippenger;
|
||||
|
|
|
|||
Loading…
Reference in a new issue