Digbyswift.Middleware.BasicAuth 1.1.0-beta

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

// Install Digbyswift.Middleware.BasicAuth as a Cake Tool
#tool nuget:?package=Digbyswift.Middleware.BasicAuth&version=1.1.0-beta&prerelease                

Digbyswift.Middleware.BasicAuth

No thrills BasicAuth middleware.

Config

"BasicAuth": {
    "Enabled": true/false,
    "Username": "",
    "Password": "",
    "Realm": "",
    "ByPassKey": "",
    "ExcludedPaths": ["/robots.txt", "/media"],
    "WhitelistedReferrers":  ["https://example.net", "https://www.example.com"],
    "WhitelistedIPs":  ["127.0.0.1", "127.0.0.2"]
}

If needed, this can be accessed using:

public YourClass(IOptions<BasicAuthSettings> authSettings)
{
    ...
}

Startup

services.AddBasicAuth()

and

appBuilder.UseBasicHttpAuthentication()

There is no need to use conditional checks for registering this middleware since the config setting Enabled will prevent the middleware from being registered.

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 was computed.  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
1.3.0 1,070 7/4/2023
1.2.0 197 6/2/2023
1.1.3 156 6/2/2023
1.1.2 170 5/24/2023
1.1.1 160 5/24/2023
1.1.0-beta 213 2/22/2023
1.1.0-alpha 146 2/21/2023
1.0.0 401 12/19/2022