We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There is a missing "default case" to caliptra-rtl/src/ecc/rtl/ecc_hmac_drbg_interface.sv line 220 found by FPV team. The following fix has been implemented internally to address this issue:
if (hmac_done_edge) begin unique case (state_reg) inside LFSR_ST: lfsr_seed_reg <= hmac_drbg_result[147 : 0]; LAMBDA_ST: lambda_reg <= hmac_drbg_result; SCALAR_RND_ST: scalar_rnd_reg <= hmac_drbg_result; MASKING_RND_ST: masking_rnd_reg <= hmac_drbg_result; KEYGEN_ST: drbg_reg <= hmac_drbg_result; SIGN_ST: drbg_reg <= hmac_drbg_result; default: begin lambda_reg <= '0; scalar_rnd_reg <= '0; masking_rnd_reg <= '0; drbg_reg <= '0; lfsr_seed_reg <= LFSR_INIT_SEED; end endcase end
The text was updated successfully, but these errors were encountered:
Note: The merge of this fix to the public repo is in progress: e90baa9
Sorry, something went wrong.
#240 fixed this.
mojtaba-bisheh
No branches or pull requests
There is a missing "default case" to caliptra-rtl/src/ecc/rtl/ecc_hmac_drbg_interface.sv line 220 found by FPV team.
The following fix has been implemented internally to address this issue:
The text was updated successfully, but these errors were encountered: