log exception

This commit is contained in:
ErikasKontenis 2020-02-07 22:58:36 +02:00
parent 13b743fc52
commit ff7636b945

View File

@ -37,6 +37,7 @@ void RSA::decrypt(char* msg) const
c.Encode(reinterpret_cast<uint8_t*>(msg), 128);
}
catch (const CryptoPP::Exception& e) {
std::cout << e.what() << '\n';
}
}