cryptography ip-cores in vhdl / verilog
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
1.0 KiB

3 years ago
3 years ago
3 years ago
  1. [![simulation](https://img.shields.io/github/workflow/status/tmeissner/cryptocores/Simulation/master?longCache=true&style=flat-square&label=simulation&logo=Github%20Actions&logoColor=fff)](https://github.com/tmeissner/cryptocores/actions?query=workflow%3ASimulation)
  2. # cryptocores
  3. Cryptography IP-cores & tests written in VHDL / Verilog
  4. The components in this repository are not intended as productional code.
  5. They serve as proof of concept, for example how to implement a pipeline using
  6. only (local) variables instead of (global) signals. Furthermore they were used
  7. how to do a VHDL-to-Verilog conversion for learning purposes.
  8. The testbenches to verify [AES](aes/sim/vhdl/) and [CTR-AES](ctraes/sim/vhdl/) are examples
  9. how useful GHDLs VHPIdirect is. They use openSSL as reference models to check the correctness
  10. of the VHDL implementation.
  11. *HINT:*
  12. The tests of some algorithms use the OSVVM library, which is redistributed as
  13. submodule. To get & initialize the submodule, please use the `--recursive` option
  14. when cloning this repository.