-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does BW Android support TLSv1.3? #990
Comments
What version of Android are you running @bobberb ? (Android 10 introduced support for TLSv1.3) |
I'm running the latest version of the S10+, most certainly Android 10. On Tue, Jun 23, 2020, 4:31 PM Matt Portune notifications@github.com wrote:
|
Ok thanks, we'll look into this. |
nginx: Android: Bitwarden: Latest from Google Play |
Any progress on this issue? I don't do any C# or Android development, but I feel that this would be a pretty simple configuration option. With a look at the packages you are using for HTTP and a little bit of searching, I found this solution to enable all TLS versions: System.Net.ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls13 | SecurityProtocolType.Tls12 | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls; |
Answer the original question: no, the Android app does not currently, as of Feb 16, 2022. I had set my HAProxy to reject TLS < 1.3, and the app failed with "Handshake failed". If I set my HAProxy to reject < 1.2, I can successful login to my privately hosted bitwarden vault. So it maximally supports TLSv1.2 currently. |
Would be great if this could be fixed. Are there any updates on the roadmap? TLS 1.3 is being rolled out more and more as default. |
Agreed. Some web servers have TLS 1.3 as the primary cipher, which means Bitwarden fails to log in, as they apparently choose TLS 1.3 when the client only supports TLS 1.2. This results in me not being able to log in. |
I've investigated further. BW supports TLS 1.3 and all the appropriate cipher suites and signature schemes. My problem was due to a misconfigured webserver. This issue can now be closed. |
Care to elaborate and provide direction? It appears that several other people believe that this is an issue on the client side. |
Looking at the logs from my web server when I use the mobile app, its clear it supports TLS1.3:
The cipher suite TLS13_AES_128_GCM_SHA256 means TLS1.3 support. |
My device stopped syncing 6 months ago without my knowledge until today. After doing some digging and putting TLSv1.2 in my nginx.conf first before TLSv1.3, I no longer have the handshake error. Is TLSv1.3 support planned for bitwarden?
The text was updated successfully, but these errors were encountered: