aboutsummaryrefslogtreecommitdiffstats
path: root/src/crypto/aes-cbc.c
Commit message (Collapse)AuthorAgeFilesLines
* Remove the GPL notification from files contributed by Jouni MalinenJouni Malinen2012-02-111-8/+2
| | | | | | | Remove the GPL notification text from the files that were initially contributed by myself. Signed-hostap: Jouni Malinen <j@w1.fi>
* Resolve some sparse warningsJouni Malinen2009-11-251-0/+1
| | | | | | Mainly, this is including header files to get definitions for functions which is good to verify that the parameters match. None of these are issues that would have shown as incorrect behavior of the program.
* Remove unneeded aes_i.h inclusion from number of placesJouni Malinen2009-08-171-14/+14
| | | | | | | | | | The BLOCK_SIZE define can be made more specific by using AES_ prefix and by moving it to aes.h. After this, most aes-*.c do not really need to include anything from the internal aes_i.h header file. In other words, aes_i.h can now be used only for the code that uses the internal AES block operation implementation and none of the code that can use AES implementation from an external library do not need to include this header file.
* Crypto build cleanup: remove CONFIG_NO_AES_*Johannes Berg2009-08-131-0/+85
Instead of using a defines and conditional building of AES parts, move the conditional functionality into separate files.