aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2019-10-06 12:58:24 -0400
committerJack Lloyd <[email protected]>2019-10-06 12:58:24 -0400
commit41b730801606dfc96934235e1cf37822756cbd1c (patch)
tree541b360ae241ffbcfbceb780cb641e8e0c1f5ace /src/lib
parent5268ca5cfedbe36e754d2796db0a7690b6b2f14c (diff)
Fix warning in XTS
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/modes/xts/xts.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/modes/xts/xts.h b/src/lib/modes/xts/xts.h
index cf9d50d0c..75de93c08 100644
--- a/src/lib/modes/xts/xts.h
+++ b/src/lib/modes/xts/xts.h
@@ -58,8 +58,8 @@ class BOTAN_PUBLIC_API(2,0) XTS_Mode : public Cipher_Mode
std::unique_ptr<BlockCipher> m_cipher;
std::unique_ptr<BlockCipher> m_tweak_cipher;
secure_vector<uint8_t> m_tweak;
- const size_t m_cipher_parallelism;
const size_t m_cipher_block_size;
+ const size_t m_cipher_parallelism;
};
/**