fn eight()

in src/main.rs [103:107]


fn eight() -> Scalar {
    let mut bytes = [0u8; 32];
    bytes[31] |= 8;
    Scalar::from_bytes_mod_order(bytes)
}