24 lines
376 B
Systemverilog
24 lines
376 B
Systemverilog
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 |