Android 中的 SSL 客户端身份验证
我需要编写与.Net 服务通信的Android 应用程序。我必须进行服务器/客户端身份验证。我发现了一些有用的主题(此博客和此博客),但它们都展示了如何进行了服务器身份验证。如何进行客户端认证?我发现了一个有用的讨论,但作者使用了套接字,但我需要通过 HttpClient 来实现。
I need to write Android app that will be communicate with .Net service. I have to make server/client authentication. I found some useful topics (this blog and this blog) , but they both show how to made server authentication. How can I made client authentication? I found a useful discussion, but there author uses Sockets, but i need to make it via HttpClient.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
下面允许我使用我自己的 rootca 和客户端+服务器证书。即,无需支付任何人钱即可实现安全:-)
使用 openssl 创建 rootca、客户端和服务器密钥和证书(网上有很多相关教程)
使用 keytool 以 bouncycastle 作为提供者创建 rootcacert.bks 并
使用 -importcert 创建 clientcertandkey.p12 openssl pkcs12 -导出...
the following allows me to use my own rootca and client+server certificates. ie, security without paying anyone money :-)
create your rootca, and client and server keys and certs using openssl (many tutorials for this on the web)
create rootcacert.bks using keytool with bouncycastle as provider and -importcert
create clientcertandkey.p12 using openssl pkcs12 -export ...