[Cryptech-Commits] [core/rng/trng] 01/01: Removed the temporary task for generating seeds that is obsoleted by the seed process.
git at cryptech.is
git at cryptech.is
Thu Aug 27 11:12:05 UTC 2015
This is an automated email from the git hooks/post-receive script.
joachim at secworks.se pushed a commit to branch master
in repository core/rng/trng.
commit 1342e5ffec4e2f79437674fafaddcf7f52a4e5c1
Author: Joachim Strömbergson <joachim at secworks.se>
Date: Thu Aug 27 13:12:00 2015 +0200
Removed the temporary task for generating seeds that is obsoleted by the seed process.
---
src/tb/tb_csprng.v | 22 ----------------------
1 file changed, 22 deletions(-)
diff --git a/src/tb/tb_csprng.v b/src/tb/tb_csprng.v
index 4e2efec..b9ec4f9 100644
--- a/src/tb/tb_csprng.v
+++ b/src/tb/tb_csprng.v
@@ -416,28 +416,6 @@ module tb_csprng();
//----------------------------------------------------------------
- //----------------------------------------------------------------
- task test_gen_data();
- integer i;
- begin
- pbyte = 8'h00;
- i = 0;
-
- $display("Generating seed patterns.\n");
-
- while (i < 256)
- begin
- tb_seed_data = {64{pbyte}};
- $display("seed %03d: 0x%064x", i, tb_seed_data);
- #(CLK_PERIOD);
- i = i + 1;
- pbyte = pbyte + 8'h01;
- end
- end
- endtask // test_gen_data
-
-
- //----------------------------------------------------------------
// csprng_test
//
// The main test functionality.
More information about the Commits
mailing list