如何在 Java 中结合 RSA 自适应身份验证?

发布于 2024-11-10 12:49:09 字数 249 浏览 1 评论 0原文

我正在阅读 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

孤蝉 2024-11-17 12:49:09

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.

白龙吟 2024-11-17 12:49:09

Java 结合了 JCE(Java 加密扩展),其中包括用于加密的 RSA 算法。

Java incorporates JCE (Java Cryptographic Extensions) which includes RSA algorithms for encryption.

旧时光的容颜 2024-11-17 12:49:09

你必须使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文