-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Maybe you want replace INT to UINT8_T here. #225
Comments
You are right for consistency reasons. The Code uses several types for the for-loop indexes: I am personally a big fan of Stroustrup's guidelines, which state that unsigned should only be used for bit manipulation, which are all the arrays here that are part of the AES calculation. At least, it does not make sense to use a fixed-bit type like -> Therefore,I would go with |
Unfortunately, it does make sense in this case. Standard C |
The variable i here can be uint8_t too.
tiny-AES-c/aes.c
Line 352 in f06ac37
The text was updated successfully, but these errors were encountered: