ASP.NET Identity (MVC) (edit)
1) Introduction to ASP.NET Identity
https://docs.microsoft.com/en-us/aspnet/identity/overview/getting-started/introduction-to-aspnet-identity
2) ASP.NET Identity Stripped Bare - MVC Part 1 + ASP.NET Identity Stripped Bare - MVC Part 2
https://benfoster.io/blog/aspnet-identity-stripped-bare-mvc-part-1
https://benfoster.io/blog/aspnet-identity-stripped-bare-mvc-part-2
NakedIdentity-master.zip
3) ASP.NET Identity Tutorial – OWIN Authentication Middleware
https://www.tektutorialshub.com/asp-net/asp-net-identity-tutorial-owin-setup/
AspNetMVCIdentityOWIN.rar
4) Securing ASP.NET MVC Applications with ASP.NET Identity
https://www.codeguru.com/csharp/.net/net_asp/mvc/securing-asp.net-mvc-applications-with-asp.net-identity.htm
OWIN Authentication middleware: It has dependencies on the following packages
Microsoft.Owin
The Microsoft.Owin namespace contains classes that support OWIN collection. The class Provides a set of helper types and abstractions for simplifying the creation of OWIN Components
Microsoft.Owin.Security
Microsoft.Owin.Security.Cookies
This Middleware that adds the cookie-based authentication to the application. This is similar to ASP.NET’s forms authentication
Microsoft.Owin.Security.OAuth
Middleware that enables an application to support any standard OAuth 2.0 authentication workflow
5) A workshop for moving through the various new pieces in ASP.NET Core Authorization
https://github.com/blowdart/AspNetAuthorizationWorkshop
6) Authorization
https://github.com/aspnet/AspNetCore.Docs/tree/master/aspnetcore/security/authorization/secure-data/samples/
7) OAuth providers for Owin - OWIN OAuth Providers (jerrie@jerriepelser.com)
https://github.com/TerribleDev/OwinOAuthProviders
ASP.NET Identity Recommended Resources - ASP.NET 4.x | Microsoft Docs