Get poly1305 core to kind of work

This commit is contained in:
Byron Lathi
2025-07-04 10:49:48 -07:00
parent 2b8286d180
commit 7f91a8af32
8 changed files with 367 additions and 2 deletions

View File

@@ -0,0 +1,24 @@
module chacha20_poly1305_64 (
input i_clk,
input i_rst,
taxi_axis_if.snk s_ctrl_axis,
taxi_axis_if.snk s_data_axis,
taxi_axis_if.src m_data_axis
);
//TODO the rest of this
// control axis decoder.
localparam R_MASK = 128'h0ffffffc0ffffffc0ffffffc0fffffff;
chacha20_pipelined_block u_chacha20_pipelined_block (
);
poly1305 u_poly1305 (
);
endmodule