summaryrefslogtreecommitdiffstats
path: root/src/Crypto.cpp
diff options
context:
space:
mode:
authorTycho <work.tycho+git@gmail.com>2014-02-05 18:43:49 +0100
committerTycho <work.tycho+git@gmail.com>2014-02-05 18:43:49 +0100
commit8ba6f731699465aa13818e307af7b9f001d3767e (patch)
treebb24c8cc1e076b7cc8457dc4a639726b5df1515b /src/Crypto.cpp
parentFix gcc not having operator ++ on enums (diff)
downloadcuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar.gz
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar.bz2
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar.lz
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar.xz
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.tar.zst
cuberite-8ba6f731699465aa13818e307af7b9f001d3767e.zip
Diffstat (limited to '')
-rw-r--r--src/Crypto.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Crypto.cpp b/src/Crypto.cpp
index 7a06d7fa3..26500f263 100644
--- a/src/Crypto.cpp
+++ b/src/Crypto.cpp
@@ -308,8 +308,8 @@ void cPublicKey::InitRnd(void)
// cAESCFBDecryptor:
cAESCFBDecryptor::cAESCFBDecryptor(void) :
- m_IsValid(false),
- m_IVOffset(0)
+ m_IVOffset(0),
+ m_IsValid(false)
{
}
@@ -366,8 +366,8 @@ void cAESCFBDecryptor::ProcessData(Byte * a_DecryptedOut, const Byte * a_Encrypt
// cAESCFBEncryptor:
cAESCFBEncryptor::cAESCFBEncryptor(void) :
- m_IsValid(false),
- m_IVOffset(0)
+ m_IVOffset(0),
+ m_IsValid(false)
{
}