We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 021bb79 commit 39e2547Copy full SHA for 39e2547
extensions/ecc/guest/src/ed25519.rs
@@ -8,7 +8,7 @@ use num_bigint::BigUint;
8
use openvm_algebra_guest::IntMod;
9
10
use super::group::{CyclicGroup, Group};
11
-use crate::{edwards::CachedMulTable, IntrinsicCurve};
+use crate::IntrinsicCurve;
12
13
#[cfg(not(target_os = "zkvm"))]
14
lazy_static! {
@@ -76,7 +76,7 @@ impl IntrinsicCurve for Ed25519Point {
76
for<'a> &'a Self::Point: Add<&'a Self::Point, Output = Self::Point>,
77
{
78
if coeffs.len() < 25 {
79
- let table = CachedMulTable::<Self>::new(bases, 4);
+ let table = crate::edwards::CachedMulTable::<Self>::new(bases, 4);
80
table.windowed_mul(coeffs)
81
} else {
82
crate::msm(coeffs, bases)
0 commit comments