diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-22 01:52:57 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-06-22 01:52:57 +0300 |
commit | 3b705c046c53ee01ba3daed0d0e7468b1a682cbc (patch) | |
tree | 65b5769aaac6b4f950a79cd2690fc30c80923571 /include/aesni/all.h | |
parent | bugfix & code style (diff) | |
download | aes-tools-3b705c046c53ee01ba3daed0d0e7468b1a682cbc.tar.gz aes-tools-3b705c046c53ee01ba3daed0d0e7468b1a682cbc.zip |
boxes: a number of improvements
* Algorithm interfaces are no longer required to load partial blocks,
the space for which is allocated dynamically.
* Padding schemes are now also separated, perhaps in the future to
become a "box" parameter.
Consequently, algorithm interfaces are no longer required to implement
padding either.
Diffstat (limited to '')
-rw-r--r-- | include/aesni/all.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/aesni/all.h b/include/aesni/all.h index dfe9494..144a695 100644 --- a/include/aesni/all.h +++ b/include/aesni/all.h @@ -16,9 +16,12 @@ */ #include "aes.h" +#include "algorithm.h" #include "box.h" #include "box_aes.h" #include "box_data.h" #include "buffer.h" #include "data.h" #include "error.h" +#include "mode.h" +#include "padding.h" |