3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-22 12:55:30 +00:00
This commit is contained in:
matt venn 2020-04-22 17:54:53 +02:00
commit 94ce8e1288
4 changed files with 56 additions and 7 deletions

View file

@ -2,3 +2,4 @@
/primegen_primegen
/primegen_primes_pass
/primegen_primes_fail
/djb2hash

View file

@ -0,0 +1,14 @@
[options]
mode bmc
expect fail
[engines]
smtbmc yices
[script]
read -noverific
read -sv djb2hash.sv
prep -top djb2hash
[files]
djb2hash.sv

View file

@ -0,0 +1,13 @@
// find a hash collision for DJB2 hash where it visits the same state twice
module djb2hash (input clock);
(* keep *) rand const reg [31:0] magic;
(* keep *) rand reg [7:0] inputval;
(* keep *) reg [31:0] state = 5381;
(* keep *) integer cnt = 0;
always @(posedge clock) begin
state <= ((state << 5) + state) ^ inputval;
if (state == magic) cnt <= cnt + 1;
assert (cnt < 2);
end
endmodule