diff --git a/src/rsa.cpp b/src/rsa.cpp index b382313..a04fd98 100644 --- a/src/rsa.cpp +++ b/src/rsa.cpp @@ -37,6 +37,7 @@ void RSA::decrypt(char* msg) const c.Encode(reinterpret_cast(msg), 128); } catch (const CryptoPP::Exception& e) { + std::cout << e.what() << '\n'; } }