Skip to content

Commit

Permalink
Merge branch 'bugfix/rom_aes_set_endian' into 'master'
Browse files Browse the repository at this point in the history
[Github] Fix prototype for ets_aes_set_endian

#3

Original description:
> 
> found small mistake in it
> 
> we have:
> 
```
PROVIDE ( ets_aes_crypt = 0x4005c9b8 );
PROVIDE ( ets_aes_disable = 0x4005c8f8 );
PROVIDE ( ets_aes_enable = 0x4005c8cc );
PROVIDE ( ets_aes_set_endian = 0x4005c928 );
PROVIDE ( ets_aes_setkey_dec = 0x4005c994 );
PROVIDE ( ets_aes_setkey_enc = 0x4005c97c );
```


See merge request !29
  • Loading branch information
igrr committed Aug 29, 2016
2 parents f4b3820 + fa31001 commit af54527
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/esp32/include/rom/aes.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ void ets_aes_enable(void);

void ets_aes_disable(void);

void ets_set_endian(bool key_word_swap, bool key_byte_swap,
void ets_aes_set_endian(bool key_word_swap, bool key_byte_swap,
bool in_word_swap, bool in_byte_swap,
bool out_word_swap, bool out_byte_swap);

Expand Down

0 comments on commit af54527

Please sign in to comment.