summaryrefslogtreecommitdiffstats
path: root/src/crypto/modes/internal.h
diff options
context:
space:
mode:
authorKenny Root <kroot@google.com>2015-09-25 00:50:32 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2015-09-25 00:50:32 +0000
commitf2bb3397dcd676bf62258faac7d24eff8c66125d (patch)
treedc62c249d595198e0d99e43890019d21e901fbec /src/crypto/modes/internal.h
parent1554cae4bbff5d279e8604af7a9c007c82d50581 (diff)
parente246de8f184e644debf965ecdca552f006b56881 (diff)
downloadexternal_boringssl-f2bb3397dcd676bf62258faac7d24eff8c66125d.zip
external_boringssl-f2bb3397dcd676bf62258faac7d24eff8c66125d.tar.gz
external_boringssl-f2bb3397dcd676bf62258faac7d24eff8c66125d.tar.bz2
am e246de8f: am 00bc53f6: am a04d78d3: Revert "external/boringssl: sync with upstream."
* commit 'e246de8f184e644debf965ecdca552f006b56881': Revert "external/boringssl: sync with upstream."
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];