sp1-core-executor 6.1.0

RISC-V executor for SP1
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use sp1_curves::EllipticCurve;
use sp1_jit::SyscallContext;

/// Execute a weierstrass decompress syscall.
#[allow(unused)]
#[allow(clippy::extra_unused_type_parameters)]
pub(crate) fn weierstrass_decompress_syscall<E: EllipticCurve>(
    _ctx: &mut impl SyscallContext,
    _slice_ptr: u64,
    _sign_bit: u64,
) -> Option<u64> {
    panic!("This method should be deprecated.");
}