Reputation: 50728
Are there any security frameworks that are open source for ASP.NET web forms or MVC? I'm looking for something to authenticate users, and authorization capabilities if possible. Just to note, I am NOT interested in the Membership API, but am looking for a framework that has similar capabilities.
Thanks.
Upvotes: 2
Views: 2148
Reputation: 63895
I just thought I'd post my open source authentication framework. You didn't say too much about your use case, so I'm not sure how well of a fit it'd be, but I'm sure it's a good starting point since it's BSD licensed.
Anyway, my authentication framework is called FSCAuth. It's located at bitbucket and BSD licensed.
Basically, it's goal is to stay out of your way and be significantly simpler to implement than ASP.Net's Membership API.
Some things it has going for it:
UserStore
. Examples: MongoDB UserStore, SQL Server UserStoreIt also has some limitations to it.
Upvotes: 1
Reputation: 7448
The only thing that comes to my mind is DotNetOpenAuth but I don't know if it can suit your needs.
Upvotes: 0