Remove chatty logging

This commit is contained in:
JoelKatz
2012-04-07 05:12:36 -07:00
parent c029ca8427
commit 65f2546f05

View File

@@ -282,7 +282,7 @@ bool checkECIES(void)
std::vector<unsigned char> decrypt=recipientPriv.decryptECIES(senderPub, ciphertext);
if(decrypt != message) return false;
std::cerr << "Msg(" << msglen << ") ok " << ciphertext.size() << std::endl;
// std::cerr << "Msg(" << msglen << ") ok " << ciphertext.size() << std::endl;
}
return true;
}