diff options
author | Michael Brown <mcb30@ipxe.org> | 2022-10-24 18:52:21 +0100 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2022-10-25 13:21:30 +0100 |
commit | 8fce26730c4df7a9792bb144c75c2c5b998c91af (patch) | |
tree | ac415615c4688747286656273faee5c1456313f5 /src/include/ipxe/crypto.h | |
parent | da81214cec87201dc18c0ce71224367e13a6edfb (diff) | |
download | ipxe-8fce26730c4df7a9792bb144c75c2c5b998c91af.tar.gz |
[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 { |