mirror of
https://github.com/saymrwulf/curve25519-dalek-source.git
synced 2026-09-08 21:00:40 +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
|
BackendKind::Serial
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub fn pippenger_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
pub fn pippenger_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
||||||
where
|
where
|
||||||
|
|
@ -209,6 +210,7 @@ impl VartimePrecomputedStraus {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub fn straus_multiscalar_mul<I, J>(scalars: I, points: J) -> EdwardsPoint
|
pub fn straus_multiscalar_mul<I, J>(scalars: I, points: J) -> EdwardsPoint
|
||||||
where
|
where
|
||||||
|
|
@ -249,6 +251,7 @@ where
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub fn straus_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
pub fn straus_optional_multiscalar_mul<I, J>(scalars: I, points: J) -> Option<EdwardsPoint>
|
||||||
where
|
where
|
||||||
|
|
|
||||||
|
|
@ -9,15 +9,22 @@
|
||||||
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
// - isis agora lovecruft <isis@patternsinthevoid.net>
|
||||||
// - Henry de Valence <hdevalence@hdevalence.ca>
|
// - Henry de Valence <hdevalence@hdevalence.ca>
|
||||||
|
|
||||||
|
//! Implementations of various multiplication algorithms for the SIMD backends.
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
pub mod variable_base;
|
pub mod variable_base;
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
pub mod vartime_double_base;
|
pub mod vartime_double_base;
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub mod straus;
|
pub mod straus;
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub mod precomputed_straus;
|
pub mod precomputed_straus;
|
||||||
|
|
||||||
|
#[allow(missing_docs)]
|
||||||
#[cfg(feature = "alloc")]
|
#[cfg(feature = "alloc")]
|
||||||
pub mod pippenger;
|
pub mod pippenger;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue