JWTLogoutAsync.Net 1.0.1

dotnet add package JWTLogoutAsync.Net --version 1.0.1
NuGet\Install-Package JWTLogoutAsync.Net -Version 1.0.1
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="JWTLogoutAsync.Net" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add JWTLogoutAsync.Net --version 1.0.1
#r "nuget: JWTLogoutAsync.Net, 1.0.1"
#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 JWTLogoutAsync.Net as a Cake Addin
#addin nuget:?package=JWTLogoutAsync.Net&version=1.0.1

// Install JWTLogoutAsync.Net as a Cake Tool
#tool nuget:?package=JWTLogoutAsync.Net&version=1.0.1

Dotnet_JWTLogoutAsync

Introduction

Never trust anything coming from the client-side they said, but why you are still trusting the client-side to handle your application logout properly and effectively, when all he did, was delete the stored jwt from the browser local storage.
If such stored jwt was copied before it is deleted, or it was intercepted in transit, it can still be used on a different computer or browser, and it will still work perfectly like it was never deleted.

This package aims to help you handle your logout process seamlessly with just 3 lines of code:
~> var jwtCheck = new JwtCheck().Login(generatedJwt).GetAwaiter().GetResult(); in your login method
~> var jwtCheck = new JwtCheck().Logout(httpContext).GetAwaiter().GetResult(); in your logout method
~> app.UseJWTCheck(); in your program.cs

N:B ⇒ you can check this link: Dotnet_JWTLogout for the syncronous method equivalent

Use Case

  • You wish to disable Jwt from authorizing your application before the token expiry time elapse.
  • It can be used with your custom Jwt implementation as well as with ASP.NET Identity.

Support

  • .NET Core 6.0 and newer

Installation

You can clone this repo and reference it in your project.

Install via .NET CLI

dotnet add package JWTLogoutAsync.Net --version 1.0.0

Install via Package Manager

Install-Package JWTLogoutAsync.Net -Version 1.0.0

Usage

To enable JWTLogout to listen for requests, use the middleware provided by JWTLogout.
Add JWTLogout Namespace in Program.cs

using JWTLogoutAsync.Net.Helpers
Call JWTLogout middleware after app.UseAuthorization() in program.cs;
...
app.UseAuthentication();
app.UseAuthorization();
app.UseJWTCheck();
...
Call JwtCheck.LoginAsync() method at the bottom of your Login Function/ActionMethod;
...
var jwtCheck = new JwtCheck().LoginAsync(generatedJwt).GetAwaiter().GetResult();
...
Call JwtCheck.Logout() method at the bottom of your Login Function/ActionMethod;
...
var jwtCheck = new JwtCheck().LogoutAsync(httpContext).GetAwaiter().GetResult();
...

Contribution

Feel like something is missing? Fork the repo and send a PR.

Encountered a bug? Fork the repo and send a PR.

Alternatively, open an issue and we'll get to it as soon 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 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.0.1 166 4/6/2023