Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions aes.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,13 @@
#endif


#ifndef AES128
#ifndef AES192
#ifndef AES256
#define AES128 1
//#define AES192 1
//#define AES256 1
#endif
#endif
#endif

#define AES_BLOCKLEN 16 // Block length in bytes - AES is 128b block only

Expand Down