Skip to content

Commit

Permalink
fix: use recover from curve crate to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nhtyy committed Feb 7, 2025
1 parent be9ffca commit a65ecf9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions patch-testing/k256/program/bin/recover.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#![no_main]
sp1_zkvm::entrypoint!(main);

use ecdsa_core::RecoveryId;
use k256::ecdsa::{Signature, VerifyingKey};
use k256::ecdsa::{RecoveryId, Signature, VerifyingKey};

pub fn main() {
let times = sp1_zkvm::io::read::<u8>();
Expand Down
3 changes: 1 addition & 2 deletions patch-testing/p256/program/bin/recover.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
#![no_main]
sp1_zkvm::entrypoint!(main);

use ecdsa_core::RecoveryId;
use p256::ecdsa::{Signature, VerifyingKey};
use p256::ecdsa::{RecoveryId, Signature, VerifyingKey};

pub fn main() {
let times = sp1_zkvm::io::read::<u8>();
Expand Down

0 comments on commit a65ecf9

Please sign in to comment.