Owin.Security.AesDataProtectorProvider 1.2.4

dotnet add package Owin.Security.AesDataProtectorProvider --version 1.2.4
NuGet\Install-Package Owin.Security.AesDataProtectorProvider -Version 1.2.4
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Owin.Security.AesDataProtectorProvider" Version="1.2.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Owin.Security.AesDataProtectorProvider --version 1.2.4
#r "nuget: Owin.Security.AesDataProtectorProvider, 1.2.4"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Owin.Security.AesDataProtectorProvider as a Cake Addin
#addin nuget:?package=Owin.Security.AesDataProtectorProvider&version=1.2.4

// Install Owin.Security.AesDataProtectorProvider as a Cake Tool
#tool nuget:?package=Owin.Security.AesDataProtectorProvider&version=1.2.4

Owin.Security.AesDataProtectorProvider

Nuget Version Nuget Download Build PackageLibraries.io dependency status for latest release CodeFactor Grade Platform

Owin.Security.AesDataProtectorProvider - is an AES cryptic provider for OWIN authentication middlewares. It is based on managed and CSP .Net framework providers.

Examples

Registration

public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        ...
        app.UseAesDataProtectorProvider();
        ...
    }
}
Usage with custom key
...
app.UseAesDataProtectorProvider("my key");
...
Enabling usage with FIPS-compliant CSP provider
...
app.UseAesDataProtectorProvider(null, true);
...

or

...
app.UseAesDataProtectorProvider("my key", true);
...
public class Startup
{
    public void Configuration(IAppBuilder app)
    {
        app.UseCookieAuthentication(new CookieAuthenticationOptions
        {
            AuthenticationType = DefaultAuthenticationTypes.ApplicationCookie,
            LoginPath = new PathString("/login")
        });

        app.UseAesDataProtectorProvider();
    }
}
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Owin.Security.AesDataProtectorProvider:

Package Downloads
Cql.Core.Owin.Autofac

Common Autofac code.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.2.4 8,684 5/18/2022
1.2.3 545 4/9/2022
1.2.2 6,557 8/7/2021
1.2.0 25,303 9/13/2020
1.1.2 278,085 7/23/2017
1.1.1 21,074 5/9/2017
1.1.0 90,492 4/28/2015
1.0.0 3,611 10/29/2014