SimpleAuthenticationTools 1.0.54

There is a newer version of this package available.
See the version list below for details.
dotnet add package SimpleAuthenticationTools --version 1.0.54
NuGet\Install-Package SimpleAuthenticationTools -Version 1.0.54
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="SimpleAuthenticationTools" Version="1.0.54" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SimpleAuthenticationTools --version 1.0.54
#r "nuget: SimpleAuthenticationTools, 1.0.54"
#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 SimpleAuthenticationTools as a Cake Addin
#addin nuget:?package=SimpleAuthenticationTools&version=1.0.54

// Install SimpleAuthenticationTools as a Cake Tool
#tool nuget:?package=SimpleAuthenticationTools&version=1.0.54

Simple Authentication for ASP.NET Core

Lint Code Base CodeQL Nuget Nuget License: MIT

A library to easily integrate Authentication in ASP.NET Core projects. Currently it supports JWT Bearer, API Key and Basic Authentication in both Controller-based and Minimal API projects.

Installation

The library is available on NuGet. Just search SimpleAuthenticationTools in the Package Manager GUI or run the following command in the Package Manager Console:

Install-Package SimpleAuthenticationTools

Usage Video

Take a look to a quick demo showing how to integrate the library:

Simple Authentication for ASP.NET Core

Configuration

Authentication can be totally configured adding an Authentication section in the appsettings.json file:

"Authentication": {
  "DefaultScheme": "Bearer", // Optional
  "JwtBearer": {
      "SchemeName": "Bearer" // Default: Bearer
      "SecurityKey": "supersecretsecuritykey42!", // Required
      "Algorithm": "HS256", // Default: HS256
      "Issuers": [ "issuer" ], // Optional
      "Audiences": [ "audience" ], // Optional
      "ExpirationTime": "01:00:00", // Default: No expiration
      "ClockSkew": "00:02:00", // Default: 5 minutes
      "EnableJwtBearerService": true // Default: true
  },
  "ApiKey": {
      "SchemeName": "MyApiKeyScheme", // Default: ApiKey
      // You can specify either HeaderName, QueryStringKey or both
      "HeaderName": "x-api-key",
      "QueryStringKey": "code",
      // Uncomment this line if you want to validate the API Key against a fixed value.
      // Otherwise, you need to register an IApiKeyValidator implementation that will be used
      // to validate the API Key.
      //"ApiKeyValue": "f1I7S5GXa4wQDgLQWgz0",
      "DefaultUserName": "ApiUser" // Required ApiKeyValue is used
  },
  "Basic": {
      "SchemeName": "Basic", // Default: Basic
      // Uncomment the following lines if you want to validate user name and password
      // against fixed values.
      // Otherwise, you need to register an IBasicAuthenticationValidator implementation
      // that will be used to validate the credentials.
      //"UserName": "marco",
      //"Password": "P@$$w0rd"
  }
}

You can configure only the kind of authentication you want to use, or you can include all of them.

The DefaultScheme attribute is used to specify what kind of authentication must be configured as default. Allowed values are the values of the SchemeName attributes.

Registering authentication at Startup

using SimpleAuthentication;

var builder = WebApplication.CreateBuilder(args);

// ...
// Registers authentication schemes and services using IConfiguration information (see above).
builder.Services.AddSimpleAuthentication(builder.Configuration);

builder.Services.AddSwaggerGen(options =>
{
    // ...
    // Add this line to integrate authentication with Swagger.
    options.AddSimpleAuthentication(builder.Configuration);
});

// ...

var app = builder.Build();

//...
// Remember to include both Authentication and Authorization middlewares.
app.UseAuthentication();
app.UseAuthorization();

//...

app.Run();

Samples

Contribute

The project is constantly evolving. Contributions are welcome. Feel free to file issues and pull requests on the repo and we'll address them as we can.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.15 1,157 1/10/2024
2.0.14 527 12/12/2023
2.0.12 2,479 7/10/2023
2.0.10 635 6/26/2023
2.0.9 581 6/14/2023
2.0.8 691 5/9/2023
2.0.4 1,539 4/4/2023
1.0.79 975 1/23/2023
1.0.77 735 1/11/2023
1.0.76 697 1/8/2023
1.0.68 911 12/5/2022
1.0.64 751 12/1/2022
1.0.60 764 11/30/2022
1.0.54 792 11/15/2022
1.0.47 755 11/9/2022
1.0.46 764 11/8/2022
1.0.43 793 11/3/2022
1.0.42 755 10/27/2022
1.0.40 931 10/19/2022
1.0.38 898 9/27/2022
1.0.36 797 9/17/2022
1.0.34 919 7/25/2022
1.0.32 885 7/6/2022
1.0.30 898 6/15/2022
1.0.29 871 6/4/2022
1.0.25 860 6/3/2022
1.0.16 860 5/20/2022
1.0.13 894 5/18/2022
1.0.10 936 5/14/2022
1.0.2 926 5/13/2022