Add new poly1305 stage

I highly doubt this will pass timing... need to make a test harness to synthesize
This commit is contained in:
2026-07-12 22:13:53 -07:00
parent 9b40c88673
commit cedec1ed1f
9 changed files with 1008 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
# Requirements
* 2 Gbps operation
* Handles both encrypt and decrypt
At reasonable FPGA speed of 250MHz, 2 Gbps requires a minimum width of 8 bits.
32 bits is a reasonable data width that would be common to see, and lets us
have more breathing room while still maintaining line rate.
Module inputs and outputs
* clk
* rst
* data_in [31:0]
* data_valid
* data_ready
* data_last
* r [127:0]
* s [127:0]
* mac [127:0]
* mac_valid
There is no output backpressure. since the result is just a single 128 bit number,
we don't need to have a ready signal. if you want to add backpressure, add a register
slice on the output outside of this module.