相当于“gss_import_name”和“gss_init_sec_context” java中的方法?

发布于 2024-09-30 13:45:20 字数 235 浏览 3 评论 0原文

我正在创建一个小型应用程序(目前),需要使用 Kerberos 库生成令牌。我正在搜索的两个等效方法是 gss_import_namegss_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 技术交流群。

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

发布评论

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

评论(2

无所的.畏惧 2024-10-07 13:45:20

您要使用的软件包是 sun.security.jgss。在该包中,您会发现可以执行以下操作:

byte[] kerberosTicket;

GSSContext context = GSSManager.getInstance().createContext((GSSCredential);
context.initSecContext(kerberosTicket, 0, kerberosTicket.length);
String user = context.getSrcName().toString();
context.dispose();
return user;

GSSContext 的唯一实现是 GSSContextImpl,它也在同一包中。

授予

The package you want to use is sun.security.jgss. In that package you will find you can do the following:

byte[] kerberosTicket;

GSSContext context = GSSManager.getInstance().createContext((GSSCredential);
context.initSecContext(kerberosTicket, 0, kerberosTicket.length);
String user = context.getSrcName().toString();
context.dispose();
return user;

The only implementation of GSSContext is GSSContextImpl which is also in the same package.

Grant

欲拥i 2024-10-07 13:45:20

如果您查看此文档:

通用安全服务 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.

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