Equations
- secp256k1n = 115792089237316195423570985008687907852837564279074904382605163141518161494337
Instances For
Equations
- blobECDSARECOVER e v r s = (totallySafePerformIO ∘ IO.Process.run) (blobECDSARECOVER.pythonCommandOfInput e v r s)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- blobSign e pᵣ = ((fun (x : String) => x.split Char.isWhitespace) ∘ totallySafePerformIO ∘ IO.Process.run) (blobSign.pythonCommandOfInput e pᵣ)
Instances For
Equations
- One or more equations did not get rendered due to their size.
Instances For
Equations
- ECDSARECOVER e v r s = match blobECDSARECOVER (toHex e) (toHex v) (toHex r) (toHex s) with | "error" => Except.error "ECDSARECOVER failed" | s => ByteArray.ofBlob (padLeft 128 s)