1iveowl / WebsocketClientLite.PCL

Websocket client lite
MIT License
38 stars 14 forks source link

TLS Cipher Suite #30

Closed alberk8 closed 7 years ago

alberk8 commented 7 years ago

I have a simple test app written in Xamarin for Android and connecting to my wss via ngnix.

In Ngnix if I set the following configuration, the app will error out when I enablethe ssl_cipher otherwise it would work well with TLS. My question is what is the strongest cipher that I can use for targeting Android 4.4 and above. The cipher suite works with a web browser websocket connection to the wss on the same server, so I know that my wss is working and the trouble would be the cipher suite for Android. Any pointer would be appreciated.

ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';

Thank you.

1iveowl commented 7 years ago

Unfortunately I don't know anything about ssl_ciphers.

All I know is that there is a new mono release that talks about ssl. Try looking at Mono Project 4.8.0 Release Notes.

1iveowl commented 7 years ago

Came across this by coincidence SSL TLS Support in Mono. Useful?