aboutsummaryrefslogtreecommitdiff
path: root/crypto/update.sh
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2023-03-22 16:44:03 +0100
committerToni Uhlig <matzeton@googlemail.com>2023-03-22 16:44:03 +0100
commitaa83760418f5ed5ce35a9add6517b2ca98ccb5bd (patch)
tree784d5e108ea31e20c5183cc9508d695f35e626bc /crypto/update.sh
parentba6815ef8fb8ae472412b5af2837a7caba2799c2 (diff)
Add crypto sources for future use.add/crypto
* the goal is to support AES-CBC-HMAC-SHA as AEAD cipher Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'crypto/update.sh')
-rwxr-xr-xcrypto/update.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/update.sh b/crypto/update.sh
new file mode 100755
index 0000000..c9cd37a
--- /dev/null
+++ b/crypto/update.sh
@@ -0,0 +1,14 @@
+#!/usr/bin/env sh
+
+set -e
+set -x
+
+MYDIR="$(dirname ${0})"
+wget 'https://raw.githubusercontent.com/kokke/tiny-AES-c/master/aes.c' -O "${MYDIR}/aes.c"
+wget 'https://raw.githubusercontent.com/kokke/tiny-AES-c/master/aes.h' -O "${MYDIR}/aes.h"
+wget 'https://raw.githubusercontent.com/kokke/tiny-HMAC-c/main/src/hmac.c' -O "${MYDIR}/hmac.c"
+wget 'https://raw.githubusercontent.com/kokke/tiny-HMAC-c/main/src/hmac.h' -O "${MYDIR}/hmac.h"
+wget 'https://raw.githubusercontent.com/kokke/tiny-HMAC-c/main/src/sha1.c' -O "${MYDIR}/sha1.c"
+wget 'https://raw.githubusercontent.com/kokke/tiny-HMAC-c/main/src/sha1.h' -O "${MYDIR}/sha1.h"
+wget 'https://raw.githubusercontent.com/bonybrown/tiny-AES128-C/master/pkcs7_padding.c' -O "${MYDIR}/pkcs7_padding.c"
+wget 'https://raw.githubusercontent.com/bonybrown/tiny-AES128-C/master/pkcs7_padding.h' -O "${MYDIR}/pkcs7_padding.h"