summaryrefslogtreecommitdiff
path: root/src/ltc/headers/tomcrypt_cipher.h
diff options
context:
space:
mode:
authorKarel Miko <karel.miko@gmail.com>2021-04-19 14:35:59 +0200
committerKarel Miko <karel.miko@gmail.com>2021-04-19 14:35:59 +0200
commita764616a27edab2e084ff23173f8b500a73858fa (patch)
tree82daa6ff357cf0168f417a00fea53766eef3c550 /src/ltc/headers/tomcrypt_cipher.h
parent8e1295bd636747fe73d9d844be956e8e1ce4e09e (diff)
update libtomcrypt
Diffstat (limited to 'src/ltc/headers/tomcrypt_cipher.h')
-rw-r--r--src/ltc/headers/tomcrypt_cipher.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ltc/headers/tomcrypt_cipher.h b/src/ltc/headers/tomcrypt_cipher.h
index 7d8d5ad6..a3ba8f30 100644
--- a/src/ltc/headers/tomcrypt_cipher.h
+++ b/src/ltc/headers/tomcrypt_cipher.h
@@ -318,9 +318,9 @@ typedef struct {
ctrlen;
/** The counter */
- unsigned char ctr[MAXBLOCKSIZE],
+ unsigned char ctr[MAXBLOCKSIZE];
/** The pad used to encrypt/decrypt */
- pad[MAXBLOCKSIZE];
+ unsigned char pad[MAXBLOCKSIZE] LTC_ALIGN(16);
/** The scheduled key */
symmetric_key key;
} symmetric_CTR;