Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any frameworks on Authentication & Authorization for Windows Form Application?

I'm a C# developer. I develop both Windows & Web Applications. I would like to build an Winforms application that has a role-based system. All users must in role/group(s). Then we assign permissions like "View, Add, Update,.." to role/group. The role/group is dynamic, so we let users to define it.

Is there any frameworks and good sample projects to implement it?

like image 445
Samnang Avatar asked Dec 09 '08 05:12

Samnang


People also ask

What is an authentication framework?

The Blackboard Learn authentication framework enables users providing ID and password credentials to validate and initiate a session in Blackboard Learn. The framework also enables integrating Blackboard Learn with one or more external authentication providers.

Which framework helps in user authentication?

The Cocoon authentication framework is a flexible module for authentication, authorization and user management. A user can be legitimated using any information available via any source, e.g. an existing database, LDAP or the file system.

Which framework is most secure?

ASP.NET Core is an enterprise back-end framework with comprehensive security controls. It has been built with security in mind from the ground up and offers developers the tools they need to protect against common attacks.

What is authentication techniques?

Multi-factor authentication Examples include codes generated from the user's smartphone, Captcha tests, fingerprints, voice biometrics or facial recognition. MFA authentication methods and technologies increase the confidence of users by adding multiple layers of security.


1 Answers

I usually roll my own, since the .NET Framework is pretty full-featured in this regard, but you might try the MS Authorization and Profile Application Block.

like image 80
Dave Markle Avatar answered Sep 27 '22 21:09

Dave Markle