diff options
author | Mattes D <github@xoft.cz> | 2016-01-06 16:20:12 +0100 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2016-01-06 16:20:12 +0100 |
commit | 491dbda7d33a154e71c68f2fd79e55436cc24eae (patch) | |
tree | 58db7ffefac6b6878f9ebc37ff7d754f56cceabd /src/Protocol | |
parent | Merge pull request #2844 from mathias-github/silktouch (diff) | |
download | cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar.gz cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar.bz2 cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar.lz cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar.xz cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.tar.zst cuberite-491dbda7d33a154e71c68f2fd79e55436cc24eae.zip |
Diffstat (limited to 'src/Protocol')
-rw-r--r-- | src/Protocol/Protocol18x.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol18x.cpp b/src/Protocol/Protocol18x.cpp index ad2964bed..9b716ff92 100644 --- a/src/Protocol/Protocol18x.cpp +++ b/src/Protocol/Protocol18x.cpp @@ -1916,7 +1916,7 @@ void cProtocol180::AddReceivedData(const char * a_Data, size_t a_Size) bb.ReadAll(Packet); Packet.resize(Packet.size() - 1); // Drop the final NUL pushed there for over-read detection AString Out; - CreateHexDump(Out, Packet.data(), (int)Packet.size(), 24); + CreateHexDump(Out, Packet.data(), Packet.size(), 24); LOGD("Packet contents:\n%s", Out.c_str()); #endif // _DEBUG @@ -2145,7 +2145,7 @@ void cProtocol180::HandlePacketLoginEncryptionResponse(cByteBuffer & a_ByteBuffe // Decrypt EncNonce using privkey cRsaPrivateKey & rsaDecryptor = cRoot::Get()->GetServer()->GetPrivateKey(); - Int32 DecryptedNonce[MAX_ENC_LEN / sizeof(Int32)]; + UInt32 DecryptedNonce[MAX_ENC_LEN / sizeof(Int32)]; int res = rsaDecryptor.Decrypt(reinterpret_cast<const Byte *>(EncNonce.data()), EncNonce.size(), reinterpret_cast<Byte *>(DecryptedNonce), sizeof(DecryptedNonce)); if (res != 4) { |