1
0
mirror of https://github.com/pocoproject/poco.git synced 2025-04-23 08:52:31 +02:00

compile fix: doesn't compile after latest NetSSL refactoring

This commit is contained in:
Marian Krivos 2009-03-07 15:01:22 +00:00
parent a33fb4a4b5
commit 92b1067a57

@ -151,8 +151,8 @@ void RSATest::createRSACipherLarge()
void RSATest::testCertificate()
{
X509Certificate cert("any.pem");
Context::Ptr pContext(new Context("", "", false));
bool ok = cert.verify("www.appinf.com", pContext);
//Context::Ptr pContext(new Context(Context::SERVER_USE,"", "", false));
bool ok = cert.verify("www.appinf.com");
RSAKey key(cert);
Cipher::Ptr pCipher = CipherFactory::defaultFactory().createCipher(key);
std::string val("lets do some encryption");