kangaroo 0.1.0

Pollard's Kangaroo ECDLP solver for secp256k1 using Vulkan/Metal/DX12 compute
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! CPU-side coordination and collision detection

mod dp_table;
mod init;
mod solver;
mod cpu_solver;

pub use dp_table::DPTable;
#[allow(unused_imports)]
pub use init::{generate_jump_table, initialize_kangaroos};
pub use solver::KangarooSolver;
pub use cpu_solver::CpuKangarooSolver;