I have a webservice running on a Windows Server 2012R2 with sTunnel 4.52 installed.
I can post to https with no problems, but another company need to post to the same web server and they say that they can't because SSL verification. I'm told that I have to support one of the following:
Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256 (0xc02b)
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (0xc02f)
Cipher Suite: TLS_DHE_RSA_WITH_AES_128_GCM_SHA256 (0x009e)
Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA (0xc00a)
Cipher Suite: TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA (0xc009)
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA (0xc013)
Cipher Suite: TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA (0xc014)
Cipher Suite: TLS_DHE_RSA_WITH_AES_128_CBC_SHA (0x0033)
Cipher Suite: TLS_DHE_RSA_WITH_AES_256_CBC_SHA (0x0039)
Cipher Suite: TLS_RSA_WITH_AES_128_GCM_SHA256 (0x009c)
Cipher Suite: TLS_RSA_WITH_AES_128_CBC_SHA (0x002f)
Cipher Suite: TLS_RSA_WITH_AES_256_CBC_SHA (0x0035)
Cipher Suite: TLS_RSA_WITH_3DES_EDE_CBC_SHA (0x000a)
I have a paid SSL certificate installed, here is my stunnel.conf the pem files was created from my pfx file.
sslVersion = all
fips = no
; TLS front-end to a web server
[https]
accept = 90100
connect = 98010
cert = C:\Program Files (x86)\stunnel\bin\publiccert.pem
key = C:\Program Files (x86)\stunnel\bin\privatekey.pem
TIMEOUTclose = 0
What will I need to add to be able to support one of the above ciphers.
Thanks for any help. Kim