dalek-ed25519-verified/verification/gen/CurveSig/Funs.lean

262 lines
10 KiB
Text
Raw Normal View History

Merge scalar into CurveField; integrate the verify glue against the model Gen merge: extract.sh now co-extracts the Scalar52 backend and the public scalar::from_bytes_mod_order[_wide] conversions into the SAME CurveField model, so the whole library — field, curve_models, edwards, scalar — shares one type universe (Scalar is a single structure, not two). The scalar proof chain repoints by one import line (ScalarDenote: CurveScalar.Funs -> CurveField.Funs); check-scalar.sh's gen list follows. Both buttons — the scalar certificates and the field/group/dsm certificates — pass fresh over the merged gen, so the merge is proven-safe, not merely hoped-safe. Verify glue (gen/CurveSig): the extracted ed25519-dalek verify_sha512 path, integrated against the proven model: - TypesExternal.lean imports CurveField.Types, so CompressedEdwardsY / EdwardsPoint / Scalar in the glue ARE the proven model's types. Only the genuinely foreign types stay opaque: sha2.Sha512, ed25519.Signature, signature.error.Error. - FunsExternal.lean imports CurveField.Funs, so every curve/scalar call (compress, vartime_double_scalar_mul_basepoint, as_bytes, neg, from_bytes_mod_order[_wide]) resolves to a proven definition — no axioms. The `?`-operator plumbing (Try::branch, FromResidual::from_residual) and compressed_from_bytes get real definitions. Only the SHA-512 hasher (sha512_new/update/finalize_bytes) and two opaque wire accessors (Signature.to_bytes, Error.new) remain axiomatized — the deliberate, documented hash-oracle boundary. Audited: `verify_sha512`'s entire axiom cone is [propext, Classical.choice, Quot.sound, sha2.Sha512, sha512_new, sha512_update, sha512_finalize_bytes, ed25519.Signature.to_bytes, signature.error.Error.new] — zero curve axioms, zero scalar axioms. The verify path is definitionally grounded in the certified model; the only trust boundary is SHA-512. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-07-04 16:13:58 +00:00
-- THIS FILE WAS AUTOMATICALLY GENERATED BY AENEAS
-- [ed25519_dalek]: function definitions
import Aeneas
import CurveSig.Types
import CurveSig.FunsExternal
open Aeneas Aeneas.Std Result ControlFlow Error
set_option linter.dupNamespace false
set_option linter.hashCommand false
set_option linter.unusedVariables false
/- You can set the `maxHeartbeats` value with the `-max-heartbeats` CLI option -/
set_option maxHeartbeats 1000000
/- You can set the `maxRecDepth` value with the `-max-recdepth` CLI option -/
set_option maxRecDepth 2048
/- You can remove the following line by using the CLI option `-all-computable`: -/
noncomputable section
namespace ed25519_dalek
/-- [ed25519_dalek::errors::{impl core::convert::From<ed25519_dalek::errors::InternalError> for signature::error::Error}::from]:
Source: 'ed25519-dalek/src/errors.rs', lines 108:4-110:5
Visibility: public -/
def signature.error.Error.Insts.CoreConvertFromInternalError.from
(_err : errors.InternalError) : Result signature.error.Error := do
signature.error.Error.new
/-- Trait implementation: [ed25519_dalek::errors::{impl core::convert::From<ed25519_dalek::errors::InternalError> for signature::error::Error}]
Source: 'ed25519-dalek/src/errors.rs', lines 106:0-116:1 -/
@[reducible]
def signature.error.Error.Insts.CoreConvertFromInternalError :
core.convert.From signature.error.Error errors.InternalError := {
from_ := signature.error.Error.Insts.CoreConvertFromInternalError.from
}
/-- [ed25519_dalek::signature::check_scalar::L_BYTES]
Source: 'ed25519-dalek/src/signature.rs', lines 106:4-109:6 -/
@[global_simps, irreducible]
def signature.check_scalar.L_BYTES : Array Std.U8 32#usize :=
Array.make 32#usize [
237#u8, 211#u8, 245#u8, 92#u8, 26#u8, 99#u8, 18#u8, 88#u8, 214#u8, 156#u8,
247#u8, 162#u8, 222#u8, 249#u8, 222#u8, 20#u8, 0#u8, 0#u8, 0#u8, 0#u8,
0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 0#u8, 16#u8
]
/-- [ed25519_dalek::signature::check_scalar]: loop body 0:
Source: 'ed25519-dalek/src/signature.rs', lines 114:4-125:5 -/
@[rust_loop_body]
def signature.check_scalar_loop.body
(bytes : Array Std.U8 32#usize) (lt : Bool) (decided : Bool) (i : Std.Usize)
:
Result (ControlFlow (Bool × Bool × Std.Usize) Bool)
:= do
if i > 0#usize
then
let j ← i - 1#usize
let (lt1, decided1) ←
if decided
then ok (lt, true)
else
do
let i1 ← Array.index_usize bytes j
let i2 ← Array.index_usize signature.check_scalar.L_BYTES j
if i1 < i2
then ok (true, true)
else let b ← if i1 > i2
then ok true
else ok false
ok (lt, b)
ok (cont (lt1, decided1, j))
else ok (done lt)
/-- [ed25519_dalek::signature::check_scalar]: loop 0:
Source: 'ed25519-dalek/src/signature.rs', lines 114:4-125:5 -/
@[rust_loop]
def signature.check_scalar_loop
(bytes : Array Std.U8 32#usize) (lt : Bool) (decided : Bool) (i : Std.Usize)
:
Result Bool
:= do
loop
(fun (lt1, decided1, i1) => signature.check_scalar_loop.body bytes lt1
decided1 i1)
(lt, decided, i)
/-- [ed25519_dalek::signature::check_scalar]:
Source: 'ed25519-dalek/src/signature.rs', lines 104:0-131:1 -/
def signature.check_scalar
(bytes : Array Std.U8 32#usize) :
Result (core.result.Result curve25519_dalek.scalar.Scalar
signature.error.Error)
:= do
let lt ← signature.check_scalar_loop bytes false false 32#usize
if lt
then
let s ← curve25519_dalek.scalar.Scalar.from_bytes_mod_order bytes
ok (core.result.Result.Ok s)
else
let e ←
core.convert.IntoFrom.into
signature.error.Error.Insts.CoreConvertFromInternalError
errors.InternalError.ScalarFormat
ok (core.result.Result.Err e)
/-- [ed25519_dalek::signature::{ed25519_dalek::signature::InternalSignature}::from_bytes]: loop body 0:
Source: 'ed25519-dalek/src/signature.rs', lines 194:8-198:9
Visibility: public -/
@[rust_loop_body]
def signature.InternalSignature.from_bytes_loop.body
(bytes : Array Std.U8 64#usize) (R_bytes : Array Std.U8 32#usize)
(s_bytes : Array Std.U8 32#usize) (i : Std.Usize) :
Result (ControlFlow ((Array Std.U8 32#usize) × (Array Std.U8 32#usize) ×
Std.Usize) ((Array Std.U8 32#usize) × (Array Std.U8 32#usize)))
:= do
if i < 32#usize
then
let i1 ← Array.index_usize bytes i
let a ← Array.update R_bytes i i1
let i2 ← i + 32#usize
let i3 ← Array.index_usize bytes i2
let a1 ← Array.update s_bytes i i3
let i4 ← i + 1#usize
ok (cont (a, a1, i4))
else ok (done (R_bytes, s_bytes))
/-- [ed25519_dalek::signature::{ed25519_dalek::signature::InternalSignature}::from_bytes]: loop 0:
Source: 'ed25519-dalek/src/signature.rs', lines 194:8-198:9
Visibility: public -/
@[rust_loop]
def signature.InternalSignature.from_bytes_loop
(bytes : Array Std.U8 64#usize) (R_bytes : Array Std.U8 32#usize)
(s_bytes : Array Std.U8 32#usize) (i : Std.Usize) :
Result ((Array Std.U8 32#usize) × (Array Std.U8 32#usize))
:= do
loop
(fun (R_bytes1, s_bytes1, i1) =>
signature.InternalSignature.from_bytes_loop.body bytes R_bytes1 s_bytes1
i1)
(R_bytes, s_bytes, i)
/-- [ed25519_dalek::signature::{ed25519_dalek::signature::InternalSignature}::from_bytes]:
Source: 'ed25519-dalek/src/signature.rs', lines 186:4-204:5
Visibility: public -/
def signature.InternalSignature.from_bytes
(bytes : Array Std.U8 64#usize) :
Result (core.result.Result signature.InternalSignature signature.error.Error)
:= do
let R_bytes := Array.repeat 32#usize 0#u8
let s_bytes := Array.repeat 32#usize 0#u8
let (R_bytes1, s_bytes1) ←
signature.InternalSignature.from_bytes_loop bytes R_bytes s_bytes 0#usize
let cey ← signature.compressed_from_bytes R_bytes1
let r ← signature.check_scalar s_bytes1
let cf ← core.result.Result.Insts.CoreOpsTry_traitTry.branch r
match cf with
| core.ops.control_flow.ControlFlow.Continue val =>
ok (core.result.Result.Ok { R := cey, s := val })
| core.ops.control_flow.ControlFlow.Break residual =>
core.result.Result.Insts.CoreOpsTry_traitFromResidualResultInfallibleE.from_residual
signature.InternalSignature (core.convert.FromSame signature.error.Error)
residual
/-- [ed25519_dalek::signature::{impl core::convert::TryFrom<&'_0 ed25519::Signature, signature::error::Error> for ed25519_dalek::signature::InternalSignature}::try_from]:
Source: 'ed25519-dalek/src/signature.rs', lines 210:4-212:5
Visibility: public -/
def
signature.InternalSignature.Insts.CoreConvertTryFromShared0SignatureError.try_from
(sig : ed25519.Signature) :
Result (core.result.Result signature.InternalSignature signature.error.Error)
:= do
let a ← ed25519.Signature.to_bytes sig
signature.InternalSignature.from_bytes a
/-- [ed25519_dalek::verifying::recompute_r_sha512]:
Source: 'ed25519-dalek/src/verifying.rs', lines 784:0-797:1 -/
def verifying.recompute_r_sha512
(key : verifying.VerifyingKey) (sig : signature.InternalSignature)
(message : Slice Std.U8) :
Result curve25519_dalek.edwards.CompressedEdwardsY
:= do
let h ← verifying.sha512_new
let a ← curve25519_dalek.edwards.CompressedEdwardsY.as_bytes sig.R
let s ← lift (Array.to_slice a)
let h1 ← verifying.sha512_update h s
let a1 ←
curve25519_dalek.edwards.CompressedEdwardsY.as_bytes key.compressed
let s1 ← lift (Array.to_slice a1)
let h2 ← verifying.sha512_update h1 s1
let h3 ← verifying.sha512_update h2 message
let a2 ← verifying.sha512_finalize_bytes h3
let k ← curve25519_dalek.scalar.Scalar.from_bytes_mod_order_wide a2
let minus_A ←
curve25519_dalek.edwards.EdwardsPoint.Insts.CoreOpsArithNegEdwardsPoint.neg
key.point
let ep ←
curve25519_dalek.edwards.EdwardsPoint.vartime_double_scalar_mul_basepoint k
minus_A sig.s
curve25519_dalek.edwards.EdwardsPoint.compress ep
/-- [ed25519_dalek::verifying::verify_sha512]: loop body 0:
Source: 'ed25519-dalek/src/verifying.rs', lines 816:4-821:5 -/
@[rust_loop_body]
def verifying.verify_sha512_loop.body
(e : Array Std.U8 32#usize) (r : Array Std.U8 32#usize) (equal : Bool)
(i : Std.Usize) :
Result (ControlFlow (Bool × Std.Usize) Bool)
:= do
if i < 32#usize
then
let i1 ← Array.index_usize e i
let i2 ← Array.index_usize r i
let equal1 ← if i1 != i2
then ok false
else ok equal
let i3 ← i + 1#usize
ok (cont (equal1, i3))
else ok (done equal)
/-- [ed25519_dalek::verifying::verify_sha512]: loop 0:
Source: 'ed25519-dalek/src/verifying.rs', lines 816:4-821:5 -/
@[rust_loop]
def verifying.verify_sha512_loop
(e : Array Std.U8 32#usize) (r : Array Std.U8 32#usize) (equal : Bool)
(i : Std.Usize) :
Result Bool
:= do
loop
(fun (equal1, i1) => verifying.verify_sha512_loop.body e r equal1 i1)
(equal, i)
/-- [ed25519_dalek::verifying::verify_sha512]:
Source: 'ed25519-dalek/src/verifying.rs', lines 800:0-827:1 -/
def verifying.verify_sha512
(key : verifying.VerifyingKey) (message : Slice Std.U8)
(sig : ed25519.Signature) :
Result (core.result.Result Unit signature.error.Error)
:= do
let r ←
signature.InternalSignature.Insts.CoreConvertTryFromShared0SignatureError.try_from
sig
let cf ← core.result.Result.Insts.CoreOpsTry_traitTry.branch r
match cf with
| core.ops.control_flow.ControlFlow.Continue val =>
let expected_R ← verifying.recompute_r_sha512 key val message
let e ← curve25519_dalek.edwards.CompressedEdwardsY.as_bytes expected_R
let r1 ← curve25519_dalek.edwards.CompressedEdwardsY.as_bytes val.R
let equal ← verifying.verify_sha512_loop e r1 true 0#usize
if equal
then ok (core.result.Result.Ok ())
else
let e1 ←
core.convert.IntoFrom.into
signature.error.Error.Insts.CoreConvertFromInternalError
errors.InternalError.Verify
ok (core.result.Result.Err e1)
| core.ops.control_flow.ControlFlow.Break residual =>
core.result.Result.Insts.CoreOpsTry_traitFromResidualResultInfallibleE.from_residual
Unit (core.convert.FromSame signature.error.Error) residual
end ed25519_dalek