According to the Specification in POCO assistant:
Initialize the NetSSL library, as well as the underlying OpenSSL libraries, by calling Poco::Crypt
Let's take Net/samples/httpget as an example, let's copy httpget/ as a new httpsget directory:
const Context::Ptr context = new Context(Context::CLIENT_USE, "", "", "", Context::VERIFY_NONE, 9, false, "ALL:!ADH:!LOW:!EXP:!MD5:@STRENGTH");
HTTPSClientSession session(uri.getHost(), uri.getPort(), context);
Summary: