Remove debug output from AuthenticatedKeyAgreementWithRolesValidate

pull/871/head
Jeffrey Walton 2019-08-05 01:32:01 -04:00
parent 21518778c5
commit 88b37cff04
No known key found for this signature in database
GPG Key ID: B36AB348921B1838
1 changed files with 0 additions and 9 deletions

View File

@ -196,15 +196,6 @@ bool AuthenticatedKeyAgreementWithRolesValidate(AuthenticatedKeyAgreementDomain
if (memcmp(val1.begin(), val2.begin(), initiator.AgreedValueLength()))
{
std::cout << "FAILED authenticated agreed values not equal" << std::endl;
std::cout << "Initiator: ";
StringSource(val1.begin(), val1.size(), true, new HexEncoder(new FileSink(std::cout)));
std::cout << "\n";
std::cout << "Recipient: ";
StringSource(val2.begin(), val2.size(), true, new HexEncoder(new FileSink(std::cout)));
std::cout << "\n";
return false;
}