ziskos 1.1.0-alpha

Guest runtime and entrypoint for programs targeting the ZisK zkVM
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use lazy_static::lazy_static;
use num_bigint::BigUint;

lazy_static! {
    /// secp256r1 base field prime.
    pub static ref P: BigUint = BigUint::parse_bytes(
        b"ffffffff00000001000000000000000000000000ffffffffffffffffffffffff",
        16
    )
    .unwrap();
    /// secp256r1 group order.
    pub static ref N: BigUint = BigUint::parse_bytes(
        b"ffffffff00000000ffffffffffffffffbce6faada7179e84f3b9cac2fc632551",
        16
    )
    .unwrap();
}