Hi,

I'm developing a module which is an interface for an API.

This API is running on an old virtual server Windows 2008.

Calling api with http protocol is all ok.

With the default setting of openssl in Nim, when I use https, there is a 
problem in handshaking phase.

Using httpclient the solution is to set sslcontext:
    
    
    sslContext = newContext(protVersion = protSSLv23, cipherList=CiphersOld, 
ciphersuites=CiphersOld)
    
    
    Run

Is there any way to do this using yahttp?

Thanks 

Reply via email to