From 95e4cdf4ec214145a87f50f9f688116e3c71d901 Mon Sep 17 00:00:00 2001 From: Austin Abell Date: Wed, 4 Dec 2024 20:06:10 -0500 Subject: [PATCH] Update k256/src/arithmetic/projective.rs --- k256/src/arithmetic/projective.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/k256/src/arithmetic/projective.rs b/k256/src/arithmetic/projective.rs index 53394183..04420150 100644 --- a/k256/src/arithmetic/projective.rs +++ b/k256/src/arithmetic/projective.rs @@ -196,8 +196,8 @@ impl ProjectivePoint { } } - #[cfg(not(all(target_os = "zkvm", target_arch = "riscv32")))] /// Returns `self + other`. + #[cfg(not(all(target_os = "zkvm", target_arch = "riscv32")))] fn add_mixed(&self, other: &AffinePoint) -> ProjectivePoint { // We implement the complete addition formula from Renes-Costello-Batina 2015 // (https://eprint.iacr.org/2015/1060 Algorithm 8).