Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-30 Thread Richard Moore
On 29 March 2017 at 21:23, Thiago Macieira wrote: > On quarta-feira, 29 de março de 2017 08:57:06 PDT Jan 'Koviš' Struhár > wrote: > > Is 3DES a poor cipher too? The server only appears to support RC4-MD5, RC4- > SHA, and DES-CBC3-SHA. > > ​3DES is poor and has various problems (e.g. sweet32, cr

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-29 Thread Thiago Macieira
On quarta-feira, 29 de março de 2017 08:57:06 PDT Jan 'Koviš' Struhár wrote: > The pain in the back is, that the server admin is a not cooperating > fellow, otherwise I do not need to solve this kind of issues... > > Many thanks for detailed analysis. Stop using their service then. And advise you

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-29 Thread Jan 'Koviš' Struhár
On 03/29/2017 05:53 PM, Thiago Macieira wrote: On quarta-feira, 29 de março de 2017 02:32:45 PDT Richard Moore wrote: Your ciphers are too good for the server - it wants terrible ones. eg. RC4-MD5: openssl s_client -connect www.webnotes.cz:443 -cipher RC4-MD5 Ah. I see. Well, the OP can then

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-29 Thread Thiago Macieira
On quarta-feira, 29 de março de 2017 02:32:45 PDT Richard Moore wrote: > Your ciphers are too good for the server - it wants terrible ones. > eg. RC4-MD5: > > openssl s_client -connect www.webnotes.cz:443 -cipher RC4-MD5 Ah. I see. Well, the OP can then connect to the server by using setCiphers.

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-29 Thread Richard Moore
Your ciphers are too good for the server - it wants terrible ones. eg. RC4-MD5: openssl s_client -connect www.webnotes.cz:443 -cipher RC4-MD5 Cheers Rich. On 28 March 2017 at 17:41, Thiago Macieira wrote: > On terça-feira, 28 de março de 2017 09:39:41 PDT Thiago Macieira wrote: > > On terça-f

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Thiago Macieira
On terça-feira, 28 de março de 2017 09:39:41 PDT Thiago Macieira wrote: > On terça-feira, 28 de março de 2017 09:28:17 PDT Richard Moore wrote: > > ​There isn't a bug in Qt here. The server isn't transmitting the full > > chain > > as it's required to. You can bypass the error in the normal way if

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Thiago Macieira
On terça-feira, 28 de março de 2017 09:28:17 PDT Richard Moore wrote: > ​There isn't a bug in Qt here. The server isn't transmitting the full chain > as it's required to. You can bypass the error in the normal way if you > really need to - read the docs. I did get a cert-invalid error with GnuTLS,

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Richard Moore
On 28 March 2017 at 17:09, Thiago Macieira wrote: > Em terça-feira, 28 de março de 2017, às 08:02:46 PDT, Jan 'Koviš' Struhár > escreveu: > > On 03/28/2017 09:10 AM, Thiago Macieira wrote: > > > Em segunda-feira, 27 de março de 2017, às 23:58:32 PDT, Jan 'Koviš' > > > Struhár > > > > > > escreveu

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Thiago Macieira
Em terça-feira, 28 de março de 2017, às 08:02:46 PDT, Jan 'Koviš' Struhár escreveu: > On 03/28/2017 09:10 AM, Thiago Macieira wrote: > > Em segunda-feira, 27 de março de 2017, às 23:58:32 PDT, Jan 'Koviš' > > Struhár > > > > escreveu: > >> my mobile app using QNetworkAccessManager to access > >>

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Jan 'Koviš' Struhár
On 03/28/2017 09:10 AM, Thiago Macieira wrote: Em segunda-feira, 27 de março de 2017, às 23:58:32 PDT, Jan 'Koviš' Struhár escreveu: my mobile app using QNetworkAccessManager to access https://www.webnotes.cz That website isn't working. Tried curl in the command-line: That goes without asking

Re: [Interest] Ignore SSL errors on Android 6.0+

2017-03-28 Thread Thiago Macieira
Em segunda-feira, 27 de março de 2017, às 23:58:32 PDT, Jan 'Koviš' Struhár escreveu: > my mobile app using QNetworkAccessManager to access https://www.webnotes.cz That website isn't working. Tried curl in the command-line: $ curl -v https://www.webnotes.cz * Rebuilt URL to: https://www.webnotes

[Interest] Ignore SSL errors on Android 6.0+

2017-03-27 Thread Jan 'Koviš' Struhár
Hi, my mobile app using QNetworkAccessManager to access https://www.webnotes.cz stopped working with Android 6.0+ (there were general problems with SSL solved by bundling OpenSSL libs, that is OK). Other sites that have SSL certificates well set do work well. On Linux desktop also the proble