aboutsummaryrefslogtreecommitdiff
path: root/src/rtl/keywrap_core.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/rtl/keywrap_core.v')
-rw-r--r--src/rtl/keywrap_core.v10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/rtl/keywrap_core.v b/src/rtl/keywrap_core.v
index 61f7859..9695b0b 100644
--- a/src/rtl/keywrap_core.v
+++ b/src/rtl/keywrap_core.v
@@ -44,15 +44,19 @@ module keywrap_core (
input wire clk,
input wire reset_n,
- input wire encdec,
input wire init,
+ input wire next,
+ input wire encdec,
+
output wire ready,
+
+ input wire [12 : 0] rlen,
+
input wire [255 : 0] key,
input wire keylen,
- input wire [13 : 0] message_len,
+ input wire api_cs,
input wire api_we,
- input wire [13 : 0] api_addr,
input wire [31 : 0] api_wr_data,
output wire [31 : 0] api_rd_data
);