Skip to content

Commit

Permalink
Fix a bug in the specification found by SAT solver
Browse files Browse the repository at this point in the history
  • Loading branch information
pennyannn committed Oct 1, 2024
1 parent 2c0f2b4 commit 92962f6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Proofs/AES-GCM/GCMInitV8Sym.lean
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ theorem gcm_init_v8_program_run_152 (s0 sf : ArmState)

set_option maxRecDepth 1000000 in
set_option maxHeartbeats 2000000 in
set_option sat.timeout 180 in
-- set_option linter.unusedVariables false in
-- set_option profiler true in
theorem gcm_init_v8_program_correct (s0 sf : ArmState)
Expand All @@ -60,7 +61,9 @@ theorem gcm_init_v8_program_correct (s0 sf : ArmState)
-- H_addr ptr stays the same
∧ H_addr sf = H_addr s0
-- v20 - v31 stores results of Htable
∧ read_sfp 128 20#5 sf = (GCMV8.GCMInitV8 (read_mem_bytes 16 (H_addr s0) s0)).get! 0
let Hinit := (read_mem_bytes 16 (H_addr s0) s0)
read_sfp 128 20#5 sf =
(GCMV8.GCMInitV8 ((BitVec.extractLsb' 0 64 Hinit) ++ (BitVec.extractLsb' 64 64 Hinit))).get! 0
--
-- TODO: Commenting out memory related conjuncts since it seems
-- to make symbolic execution stuck
Expand Down

0 comments on commit 92962f6

Please sign in to comment.