summaryrefslogtreecommitdiffstats
path: root/src/crypto/modes/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/modes/internal.h')
-rw-r--r--src/crypto/modes/internal.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/crypto/modes/internal.h b/src/crypto/modes/internal.h
index caeac40..d12405e 100644
--- a/src/crypto/modes/internal.h
+++ b/src/crypto/modes/internal.h
@@ -173,6 +173,11 @@ struct gcm128_context {
void *key;
};
+struct xts128_context {
+ void *key1, *key2;
+ block128_f block1, block2;
+};
+
struct ccm128_context {
union {
uint64_t u[2];