diff options
-rw-r--r-- | aes_keywrap.c | 2 | ||||
-rw-r--r-- | core.c | 2 | ||||
-rw-r--r-- | verilog_constants.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/aes_keywrap.c b/aes_keywrap.c index d43a96f..3a5ce2e 100644 --- a/aes_keywrap.c +++ b/aes_keywrap.c @@ -198,7 +198,7 @@ static hal_error_t do_keywrap_core(const hal_core_t *core, uint8_t * const C, co if ((err = hal_io_read(core, KEYWRAP_ADDR_A0, C, 8)) != HAL_OK) return err; - /* read the data to R_DATA */ + /* read the data from R_DATA */ if ((err = hal_io_read(core, KEYWRAP_ADDR_R_DATA, C + 8, 8 * n)) != HAL_OK) return err; @@ -104,7 +104,7 @@ static inline hal_core_t *probe_cores(void) { "modexps6", 3 * CORE_SIZE }, /* ModexpS6 uses four slots */ { "modexpa7", 7 * CORE_SIZE }, /* ModexpA7 uses eight slots */ { "modexpng", 15 * CORE_SIZE }, /* ModexpNG uses 16 slots */ - { "key wrap", 31 * CORE_SIZE }, /* keywrap uses 32 slots */ + { "key wrap", 15 * CORE_SIZE }, /* keywrap uses 16 slots */ }; if (offsetof(hal_core_t, info) != 0) diff --git a/verilog_constants.h b/verilog_constants.h index db75294..9ed84d4 100644 --- a/verilog_constants.h +++ b/verilog_constants.h @@ -364,8 +364,8 @@ #define KEYWRAP_ADDR_KEY6 (0x16) #define KEYWRAP_ADDR_KEY7 (0x17) -#define KEYWRAP_ADDR_R_DATA (0x1000) -#define KEYWRAP_LEN_R_DATA (0x1000) +#define KEYWRAP_ADDR_R_DATA (0x800) +#define KEYWRAP_LEN_R_DATA (0x800) #endif /* _VERILOG_CONSTANTS_H_ */ |