相当于“gss_import_name”和“gss_init_sec_context” java中的方法?
我正在创建一个小型应用程序(目前),需要使用 Kerberos 库生成令牌。我正在搜索的两个等效方法是 gss_import_name 和 gss_init_sec_context 方法。我在其他语言中找到了几个例子:C、C++ 和 C#,但在 Java 中没有找到。我什至不确定要在我的应用程序中导入哪个库。如果有人回答我的问题,那将对我非常有帮助。
诚挚的,埃菲斯门。
I'm creating a small application(for now) that needs to generate a Token with Kerberos library. The two methods equivalent I'm searching for are the gss_import_name and gss_init_sec_context methods. I have found several examples in other languages: C,C++ and C#, but none in Java. I'm not even sure of which library to import in my application. If someone has an answer to my question it would be very helpful to me.
Cordially, Ephismen.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您要使用的软件包是 sun.security.jgss。在该包中,您会发现可以执行以下操作:
GSSContext
的唯一实现是GSSContextImpl
,它也在同一包中。授予
The package you want to use is sun.security.jgss. In that package you will find you can do the following:
The only implementation of
GSSContext
isGSSContextImpl
which is also in the same package.Grant
如果您查看此文档:
通用安全服务 API 版本 2:Java 绑定
本文档详细解释了 GSS 并给出了几个示例。该文档的一节解释了哪些接口实现了您上面提到的 GSS-API 例程的功能。
gss_import_name :由 GSSManager 类实现。
gss_init_sec_context:由GSSContext接口实现。
If you look at this document:
Generic Security Service API Version 2 : Java Bindings
This document explains a lot about GSS and gives a couple examples. One section of the document explains which interfaces implement functionality of the GSS-API routines you mentioned above.
gss_import_name : implemented by the GSSManager class.
gss_init_sec_context: implemented by the GSSContext interface.