Get poly1305 core to kind of work
This commit is contained in:
24
ChaCha20_Poly1305_64/src/chacha20_poly1305_64.sv
Normal file
24
ChaCha20_Poly1305_64/src/chacha20_poly1305_64.sv
Normal 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
|
||||
Reference in New Issue
Block a user