diff options
| author | Michael Brown | 2022-10-24 19:52:21 +0200 |
|---|---|---|
| committer | Michael Brown | 2022-10-25 14:21:30 +0200 |
| commit | 8fce26730c4df7a9792bb144c75c2c5b998c91af (patch) | |
| tree | ac415615c4688747286656273faee5c1456313f5 /src/include/ipxe/crypto.h | |
| parent | [crypto] Add concept of authentication tag to cipher algorithms (diff) | |
| download | ipxe-8fce26730c4df7a9792bb144c75c2c5b998c91af.tar.gz ipxe-8fce26730c4df7a9792bb144c75c2c5b998c91af.tar.xz ipxe-8fce26730c4df7a9792bb144c75c2c5b998c91af.zip | |
[crypto] Add block cipher Galois/Counter mode of operation
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe/crypto.h')
| -rw-r--r-- | src/include/ipxe/crypto.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/ipxe/crypto.h b/src/include/ipxe/crypto.h index e807aeb52..842f2f633 100644 --- a/src/include/ipxe/crypto.h +++ b/src/include/ipxe/crypto.h @@ -11,6 +11,7 @@ FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); #include <stdint.h> #include <stddef.h> +#include <assert.h> /** A message digest algorithm */ struct digest_algorithm { |
