我目前有一个利用当前使用 1024 位 SSL 证书的流行 weservice 的 Android 应用程序。我被告知 web 服务将迁移到 2048 位 SSL 证书。我想知道 :
- 这将如何影响在旧版 Android(例如:1.x)上使用我的应用程序的用户?
- 我假设我当前使用 HttpsURLConnection 的代码会自动处理更改,我的想法是对的吗?
How will this impact the users using my app on an older version of Android (ex: 1.x)?
It's not a real answer, just a thought. (I am not aware whether 1.x had limitation ok RSA key length supported).
Based on Usage share article, there is about 0.6% of users who still uses Android 1.x. I would say it makes sense to concentrate on so small percentage, only if you have have absolutely huge user base.
I am assuming that my current code using HttpsURLConnection will take care of the change >automatically, am i right in thinking so??
Yes. You don't need to do anything.