aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/mac
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-01-12 10:35:55 -0500
committerJack Lloyd <[email protected]>2018-01-12 11:34:29 -0500
commit2031badab44efad536509ac4c0c2f3ea1928de0a (patch)
treeeb7cc8239223d7507863000bcdad8440b8c6b32b /src/lib/mac
parentaee4203df5d1b7437fccd0b134ce8190daea0cd0 (diff)
Make stream, block, hash and cipher mode base classes optional
Diffstat (limited to 'src/lib/mac')
-rw-r--r--src/lib/mac/cbc_mac/info.txt4
-rw-r--r--src/lib/mac/cmac/info.txt1
-rw-r--r--src/lib/mac/gmac/info.txt2
-rw-r--r--src/lib/mac/hmac/info.txt4
4 files changed, 10 insertions, 1 deletions
diff --git a/src/lib/mac/cbc_mac/info.txt b/src/lib/mac/cbc_mac/info.txt
index 1cf22eae0..994a63872 100644
--- a/src/lib/mac/cbc_mac/info.txt
+++ b/src/lib/mac/cbc_mac/info.txt
@@ -1,3 +1,7 @@
<defines>
CBC_MAC -> 20131128
</defines>
+
+<requires>
+block
+</requires>
diff --git a/src/lib/mac/cmac/info.txt b/src/lib/mac/cmac/info.txt
index bdddca1b2..d78b3851e 100644
--- a/src/lib/mac/cmac/info.txt
+++ b/src/lib/mac/cmac/info.txt
@@ -3,5 +3,6 @@ CMAC -> 20131128
</defines>
<requires>
+block
poly_dbl
</requires>
diff --git a/src/lib/mac/gmac/info.txt b/src/lib/mac/gmac/info.txt
index 416e914db..104e35962 100644
--- a/src/lib/mac/gmac/info.txt
+++ b/src/lib/mac/gmac/info.txt
@@ -4,5 +4,5 @@ GMAC -> 20160207
<requires>
gcm
-mac
+block
</requires>
diff --git a/src/lib/mac/hmac/info.txt b/src/lib/mac/hmac/info.txt
index cf1a288f6..50dc665dc 100644
--- a/src/lib/mac/hmac/info.txt
+++ b/src/lib/mac/hmac/info.txt
@@ -1,3 +1,7 @@
<defines>
HMAC -> 20131128
</defines>
+
+<requires>
+hash
+</requires>