diff options
author | Jack Lloyd <[email protected]> | 2019-10-06 12:58:24 -0400 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2019-10-06 12:58:24 -0400 |
commit | 41b730801606dfc96934235e1cf37822756cbd1c (patch) | |
tree | 541b360ae241ffbcfbceb780cb641e8e0c1f5ace /src/lib | |
parent | 5268ca5cfedbe36e754d2796db0a7690b6b2f14c (diff) |
Fix warning in XTS
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/modes/xts/xts.h | 2 |
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; }; /** |