如何在 Java 中结合 RSA 自适应身份验证?
我正在阅读 RSA(现在是 EMC)的一些 pdf 文件,我看到的所有使用 API 都是通过 xml。我如何使用Java来使用这种安全性?我希望用它来进行身份验证。用户名和密码将存储在我端,安全问题等将存储在RSA端。我知道我必须发送消息(即分析请求消息并验证请求) 我是否使用 xml 和 java?或者只是java,怎么样?
编辑:我正在使用自适应身份验证 API
编辑:抱歉,我应该指定,我忘记了 RSA 也是一种算法。我说的是公司里的 RSA。
I'm reading some pdf from RSA (now EMC) and all I see for using the API is through xml. How can I use Java to use this security? I am looking to use it for authentication. The username and password will be stored on my end, and security questions and the like will be stored on RSA's end. I know that I have to send messages (i.e. analyze request messages and authenticate requests) Do I use xml AND java? Or just java, and how?
edit: I'm using the Adaptive Authentication API
edit: Sorry I should've specified, I had forgotten that RSA was an algorithm as well. I am talking about RSA as in the company.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
RSA 的自适应身份验证产品使用 SOAP 供客户端集成。您将需要选择众多 Java SOAP 工具包之一并使用该工具包的方法开发您的代码。
RSA's Adaptive Authentication product uses SOAP for clients to integrate with. You will want to select one of the many Java SOAP toolkits and develop your code using the methodology of that toolkit.
Java 结合了 JCE(Java 加密扩展),其中包括用于加密的 RSA 算法。
Java incorporates JCE (Java Cryptographic Extensions) which includes RSA algorithms for encryption.
你必须使用 JAAS、JCE 和 JSSE api for java。
请参阅 Java SE 安全性
如果您打算使用, webservices ,您必须使用 ws-security throw SSL 以及密码的回调方法。
You have to use JAAS, JCE and JSSE api for java.
see Java SE security
If you intend to use webservices , you have to use ws-security throw SSL with callback methods for the password.