Dnmh.Security.ApiKeyAuthentication
3.1.0
dotnet add package Dnmh.Security.ApiKeyAuthentication --version 3.1.0
NuGet\Install-Package Dnmh.Security.ApiKeyAuthentication -Version 3.1.0
<PackageReference Include="Dnmh.Security.ApiKeyAuthentication" Version="3.1.0" />
paket add Dnmh.Security.ApiKeyAuthentication --version 3.1.0
#r "nuget: Dnmh.Security.ApiKeyAuthentication, 3.1.0"
// Install Dnmh.Security.ApiKeyAuthentication as a Cake Addin #addin nuget:?package=Dnmh.Security.ApiKeyAuthentication&version=3.1.0 // Install Dnmh.Security.ApiKeyAuthentication as a Cake Tool #tool nuget:?package=Dnmh.Security.ApiKeyAuthentication&version=3.1.0
Dnmh.Security.ApiKeyAuthentication
Note: The content of this readme has been entirely generated by ChatGPT.
Overview
Dnmh.Security.ApiKeyAuthentication
is a .NET Core library that provides API key authentication for your web applications.
Installation
You can install this library using NuGet. Simply run the following command:
dotnet add package Dnmh.Security.ApiKeyAuthentication
Usage
To use this library, follow these steps:
- In your
Startup.cs
file, add the following code to theConfigureServices
method:
services.AddAuthentication("ApiKey")
.AddApiKeyAuthentication("MySecretApiKey")
.AddSwaggerAuthorization("Description");
- In your controller or endpoint, add the
[Authorize(AuthenticationSchemes = "ApiKey")]
attribute to require an API key for that endpoint:
[HttpGet]
[Authorize(AuthenticationSchemes = "ApiKey")]
public IActionResult Get()
{
// Your code here
}
That's it! Now your API endpoints will require an API key to access them, and Swagger UI will show an "Authorize" button that lets you enter your API key.
Example
Here's an example of how to use this library in a .NET Core application:
using Microsoft.AspNetCore.Authentication;
using Microsoft.AspNetCore.Authentication.JwtBearer;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using Dnmh.Security.ApiKeyAuthentication;
namespace MyApp
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}
public IConfiguration Configuration { get; }
public void ConfigureServices(IServiceCollection services)
{
services.AddAuthentication(options =>
{
options.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme;
options.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme;
})
.AddJwtBearer(options =>
{
// Your JWT configuration here
});
services.AddApiKeyAuthentication<ApiKeyAuthenticationService>()
.AddSwaggerAuthorization("API Key Authorization");
services.AddMvc().SetCompatibilityVersion(CompatibilityVersion.Version_3_0);
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
app.UseAuthentication();
app.UseRouting();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
}
[Route("api/[controller]")]
[ApiController]
public class MyController : ControllerBase
{
[HttpGet]
[Authorize(AuthenticationSchemes = "ApiKey")]
public IActionResult Get()
{
return Ok("Hello, world!");
}
}
}
public class ApiKeyAuthenticationService : SimpleApiKeyAuthenticationServiceBase
{
public bool Validate(ValidationContext context)
{
return context.ApiKey == "YOUR_API_KEY";
}
}
In this example, the AddApiKeyAuthentication
method is called with a generic type parameter ApiKeyAuthenticationService
that implements the IApiKeyAuthenticationService
interface with a ValidateApiKey
method that checks if the provided API key matches the expected value. The AddSwaggerAuthorization
method is called with a string parameter that specifies the description of the authorization method that will be shown in Swagger UI. The [Authorize(AuthenticationSchemes = "ApiKey")]
attribute is added to the Get
method of the MyController
class to require an API key for that endpoint.
License
This library is licensed under the MIT License.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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. |
-
net7.0
- FluentValidation (>= 11.5.2)
- Swashbuckle.AspNetCore (>= 6.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.