.net 中的身份验证

发布于 2024-11-26 13:00:25 字数 80 浏览 0 评论 0原文

我希望用 C# 编写的应用程序能够执行身份验证,就像我以前通过 JAAS 在 Java 中所做的那样。我应该使用哪些对象?哪些课程?谢谢您的回答。

I'd like my application, written in C#, to perform authentications, just like I used to do in Java through JAAS. Which objects should I use? Which classes? Thank you for your answers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

撩心不撩汉 2024-12-03 13:00:25

.NET Framework 使用基于角色的安全性,包括主体、身份、
和处理安全性的权限类。您可以选择其中一项
.NET Framework 中的内置安全模块,而不是
自己建造一个。当您转换 Java 身份验证和
授权服务 (JAAS) 应用程序到 .NET Framework,您
必须考虑到两种方法之间的差异
安全。

所有 JAAS 配置文件必须重命名为 JAAS.config 才能使用
由Java语言转换助手处理。这些都被转换了
到 App.config 文件,支持类方法可以使用该文件
获取认证模块并注册到
身份验证管理器。

LoginContext 类转换为静态
System.Security.AuthenticationModule 类,它有不同的
行为。

LoginModule 类转换为 IAuthenticationModule
界面。在Java语言中,LoginContext对象注册了一个
LoginModule 对象,它使用回调处理程序来请求输入
用于验证用户身份的用户和登录模块。在.NET中
框架,认证模块注册到
身份验证管理器,循环注册身份验证
返回授权信息的模块。

来源

The .NET Framework uses role-based security with principal, identity,
and permission classes to handle security. You can choose one of the
built-in security modules within the .NET Framework, rather than
building one yourself. When you convert Java Authentication and
Authorization Service (JAAS) applications to the .NET Framework, you
must take into account the differences between the two approaches to
security.

All JAAS configuration files must be renamed as JAAS.config to be
processed by Java Language Conversion Assistant. These are converted
to App.config files, which can be used by support-class methods to
obtain authentication modules and register them with the
authentication manager.

The LoginContext class is converted to the static
System.Security.AuthenticationModule class, which has different
behavior.

The LoginModule class is converted to the IAuthenticationModule
interface. In the Java language, the LoginContext object registers a
LoginModule object, which uses callback handlers to request input from
the user and login module to authenticate users. In the .NET
Framework, authentication modules are registered with the
authentication manager, which loops through registered authentication
modules to return authorization information.

Source

缱倦旧时光 2024-12-03 13:00:25

我假设是asp.net。

详细介绍 asp.net 身份验证 的 MSDN 页面提供了很好的概述。在某些情况下,它就像编辑 web.config 文件一样简单。

I'm assuming asp.net.

The MSDN page detailing asp.net authentication provides a good overview. It can be as simple as editing the web.config file in some cases.

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