Skip to content

Commit

Permalink
jumped out of CHECK_C_CLR state if sec_seq is done (#99)
Browse files Browse the repository at this point in the history
* jumped out of CHECK_C_CLR state if sec_seq is done

* MICROSOFT AUTOMATED PIPELINE: Stamp 'mojtaba-fpv' with updated timestamp and hash after successful run

---------

Co-authored-by: Mojtaba Bisheh Niasar <“mojtabab@microsoft.com”>
  • Loading branch information
mojtaba-bisheh and Mojtaba Bisheh Niasar authored Feb 18, 2025
1 parent 1b71056 commit 39582a7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflow_metadata/pr_hash
Original file line number Diff line number Diff line change
@@ -1 +1 @@
833e03c22dc6e9fa24200862ed2d68424679855437fc9836af3bf5b0a17536f6d6a2e1de2d7eda0f5b375e13b931f1b6
a8fde5c37f2637adcbc3d7288dbe5f38b6d287bae701af6c0848666dfe239747223886176eaeacc3697ae410f9749537
2 changes: 1 addition & 1 deletion .github/workflow_metadata/pr_timestamp
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1739598780
1739916543
4 changes: 3 additions & 1 deletion src/mldsa_top/rtl/mldsa_ctrl.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1225,7 +1225,9 @@ always_comb kv_seed_data_present = '0;
end
//START of C access - check if C is still valid
MLDSA_SIGN_CHECK_C_CLR : begin
if (c_valid) begin //Stalled until C can be overwritten
if (signature_validity_chk_done)
prim_prog_cntr_nxt = MLDSA_SIGN_E;
else if (c_valid) begin //Stalled until C can be overwritten
prim_prog_cntr_nxt = prim_prog_cntr;
end
else begin
Expand Down

0 comments on commit 39582a7

Please sign in to comment.