summaryrefslogtreecommitdiffstats
path: root/src/include/ipxe/crypto.h
diff options
context:
space:
mode:
authorMichael Brown2022-10-24 19:52:21 +0200
committerMichael Brown2022-10-25 14:21:30 +0200
commit8fce26730c4df7a9792bb144c75c2c5b998c91af (patch)
treeac415615c4688747286656273faee5c1456313f5 /src/include/ipxe/crypto.h
parent[crypto] Add concept of authentication tag to cipher algorithms (diff)
downloadipxe-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.h1
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 {