summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkokke <spam@rowdy.dk>2020-01-24 16:54:19 +0100
committerGitHub <noreply@github.com>2020-01-24 16:54:19 +0100
commitf9fc97a6e4af39e410ddd25a53e569c6cf982894 (patch)
treee4fa19fd6168424014c07a7321e68cdc458ff888
parentUpdate aes.c (diff)
downloadtiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar.gz
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar.bz2
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar.lz
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar.xz
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.tar.zst
tiny-AES-c-f9fc97a6e4af39e410ddd25a53e569c6cf982894.zip
-rw-r--r--aes.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/aes.c b/aes.c
index 313ff71..b62d0bb 100644
--- a/aes.c
+++ b/aes.c
@@ -35,7 +35,6 @@ NOTE: String length must be evenly divisible by 16byte (str_len % 16 == 0)
/*****************************************************************************/
/* Includes: */
/*****************************************************************************/
-#include <stdint.h>
#include <string.h> // CBC mode, for memset
#include "aes.h"