NSIS inetc - HTTPS gives SendRequest error

I am using NSIS inetc plugin. And I'm trying to call a single url that uses HTTPS protocol. The url is giving me a SendRequest error.

As stated it looks like a solution But I'm not sure how to set the flags as @Anders described

Does anyone have any guidance regarding this?

Thanks in advance, Sincerely, - Ganesh

+3


source to share


1 answer


INetC uses flags SECURITY_FLAG_IGNORE_UNKNOWN_CA

and SECURITY_FLAG_IGNORE_REVOCATION

WinINet, but does not use SECURITY_FLAG_IGNORE_CERT_DATE_INVALID

and SECURITY_FLAG_IGNORE_CERT_CN_INVALID

. As I suggested in another answer, you should ask the author of this plugin to add the / nosecurity flag if you think you need those flags or are just using plain HTTP.



+1


source







All Articles