We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 82ffae5 commit a8ab7d7Copy full SHA for a8ab7d7
generic-ec/src/lib.rs
@@ -1,3 +1,5 @@
1
+//! Generic purpose elliptic curve cryptography
2
+
3
#![cfg_attr(not(feature = "std"), no_std)]
4
5
#[cfg(feature = "alloc")]
generic-ec/src/point/mod.rs
@@ -48,7 +48,7 @@ impl<E: Curve> Point<E> {
48
self.ct_is_zero().into()
49
}
50
51
- /// Indicates whether it's [identity point](Self::zero) (constant time)
+ /// Indicates whether it's [identity point](Self::zero) (in constant time)
52
///
53
/// Same as [`.is_zero()`](Self::is_zero) but performs constant-time comparison.
54
pub fn ct_is_zero(&self) -> Choice {
0 commit comments