Home > CWE List > CWE-1431: Driving Intermediate Cryptographic State/Results to Hardware Module Outputs (4.17) |
|
CWE-1431: Driving Intermediate Cryptographic State/Results to Hardware Module Outputs
View customized information:
For users who are interested in more notional aspects of a weakness. Example: educators, technical writers, and project/program managers.
For users who are concerned with the practical application and details about the nature of a weakness and how to prevent it from happening. Example: tool developers, security researchers, pen-testers, incident response analysts.
For users who are mapping an issue to CWE/CAPEC IDs, i.e., finding the most appropriate CWE for a specific issue (e.g., a CVE record). Example: tool developers, security researchers.
For users who wish to see all available information for the CWE/CAPEC entry.
For users who want to customize what details are displayed.
×
Edit Custom FilterThe product uses a hardware module implementing a cryptographic
algorithm that writes sensitive information about the intermediate
state or results of its cryptographic operations via one of its output
wires (typically the output port containing the final result).
![]()
![]() ![]()
![]()
![]()
![]()
Example 1 The following SystemVerilog code is a crypto module that takes input data and encrypts it by processing the data through multiple encryption rounds. Note: this example is derived from [REF-1469]. (bad code)
Example Language: Verilog
01 | module crypto_core_with_leakage
02 | (
03 | input clk,
08 | );04 | input rst, 05 | input [127:0] data_i, 06 | output [127:0] data_o, 07 | output valid 09 | 10 | localparam int total_rounds = 10; 11 | logic [3:0] round_id_q; 12 | logic [127:0] data_state_q, data_state_d; 13 | logic [127:0] key_state_q, key_state_d; 14 | 15 | crypto_algo_round u_algo_round (
16 | .clk (clk),
23 | );17 | .rst (rst), 18 | .round_i (round_id_q ), 19 | .key_i (key_state_q ), 20 | .data_i (data_state_q), 21 | .key_o (key_state_d ), 22 | .data_o (data_state_d) 24 | 25 | always @(posedge clk) begin
26 | if (rst) begin
46 | end
27 | data_state_q <= 0;
30 | end28 | key_state_q <= 0; 29 | round_id_q <= 0; 31 | else begin
32 | case (round_id_q)
45 | end
33 | total_rounds: begin
44 | endcase
34 | data_state_q <= 0;
37 | end35 | key_state_q <= 0; 36 | round_id_q <= 0; 38 | 39 | default: begin
40 | data_state_q <= data_state_d;
43 | end41 | key_state_q <= key_state_d; 42 | round_id_q <= round_id_q + 1; 47 | 48 | assign valid = (round_id_q == total_rounds) ? 1'b1 : 1'b0; 49 | 50 | assign data_o = data_state_q; 51 | 52 | endmodule In line 50 above, data_state_q is assigned to data_o. Since data_state_q contains intermediate state/results, this allows an attacker to obtain these results through data_o.
In line 50 of the fixed logic below, while "data_state_q" does not contain the final result, a "sanitizing" mechanism drives a safe default value (i.e., 0) to "data_o" instead of the value of "data_state_q". In doing so, the mechanism prevents the exposure of intermediate state/results which could be used to break soundness of the cryptographic operation being performed. A real-world example of this weakness and mitigation can be seen in a pull request that was submitted to the OpenTitan Github repository [REF-1469]. (good code)
Example Language: Verilog
01 | module crypto_core_without_leakage
02 | (
03 | input clk,
09 |04 | input rst, 05 | input [127:0] data_i, 06 | output [127:0] data_o, 07 | output valid 08 | ); 10 | localparam int total_rounds = 10; 11 | logic [3:0] round_id_q; 12 | logic [127:0] data_state_q, data_state_d; 13 | logic [127:0] key_state_q, key_state_d; 14 | 15 | crypto_algo_round u_algo_round (
16 | .clk (clk),
23 | );17 | .rst (rst), 18 | .round_i (round_id_q ), 19 | .key_i (key_state_q ), 20 | .data_i (data_state_q), 21 | .key_o (key_state_d ), 22 | .data_o (data_state_d) 24 | 25 | always @(posedge clk) begin
26 | if (rst) begin
46 | end
27 | data_state_q <= 0;
30 | end28 | key_state_q <= 0; 29 | round_id_q <= 0; 31 | else begin
32 | case (round_id_q)
45 | end
33 | total_rounds: begin
44 | endcase
34 | data_state_q <= 0;
37 | end35 | key_state_q <= 0; 36 | round_id_q <= 0; 38 | 39 | default: begin
40 | data_state_q <= data_state_d;
43 | end41 | key_state_q <= key_state_d; 42 | round_id_q <= round_id_q + 1; 47 | 48 | assign valid = (round_id_q == total_rounds) ? 1'b1 : 1'b0; 49 | 50 | assign data_o = (valid) ? data_state_q : 0; 51 | 52 | endmodule
![]()
More information is available — Please edit the custom filter or select a different filter. |
Use of the Common Weakness Enumeration (CWE™) and the associated references from this website are subject to the Terms of Use. CWE is sponsored by the U.S. Department of Homeland Security (DHS) Cybersecurity and Infrastructure Security Agency (CISA) and managed by the Homeland Security Systems Engineering and Development Institute (HSSEDI) which is operated by The MITRE Corporation (MITRE). Copyright © 2006–2025, The MITRE Corporation. CWE, CWSS, CWRAF, and the CWE logo are trademarks of The MITRE Corporation. |