jose-jwt 1.8.0

dotnet add package jose-jwt --version 1.8.0
                    
NuGet\Install-Package jose-jwt -Version 1.8.0
                    
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="jose-jwt" Version="1.8.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="jose-jwt" Version="1.8.0" />
                    
Directory.Packages.props
<PackageReference Include="jose-jwt" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add jose-jwt --version 1.8.0
                    
#r "nuget: jose-jwt, 1.8.0"
                    
#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.
#addin nuget:?package=jose-jwt&version=1.8.0
                    
Install jose-jwt as a Cake Addin
#tool nuget:?package=jose-jwt&version=1.8.0
                    
Install jose-jwt as a Cake Tool

Javascript Object Signing and Encryption (JOSE) and JSON Web Token (JWT) Implementation for .NET

Ultimate Javascript Object Signing and Encryption (JOSE) and JSON Web Token (JWT) Implementation for .NET. Minimallistic. Zero-dependency. Full suite of signature and encryption algorithms.
Supports generating, decoding, encryption and compression of JSON Web Tokens. JSON parsing agnostic.

Supported algorithms

Signing:

- HMAC signatures with HS256, HS384 and HS512.
- ECDSA signatures with ES256, ES384 and ES512.
- RSASSA-PKCS1-V1_5 signatures with RS256, RS384 and RS512.
- RSASSA-PSS signatures (probabilistic signature scheme with appendix) with PS256, PS384 and PS512.
- NONE (unprotected) plain text algorithm without integrity protection

Encryption:

- RSAES OAEP 256 encryption with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM, A256GCM
- RSAES OAEP encryption with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM, A256GCM
- RSAES-PKCS1-V1_5 encryption with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM, A256GCM
- Direct symmetric key encryption with pre-shared key A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM and A256GCM
- A128KW, A192KW, A256KW encryption with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM and A256GCM
- A128GCMKW, A192GCMKW, A256GCMKW encryption with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM and A256GCM
- ECDH-ES encryption with A128CBC-HS256, A128GCM, A192GCM, A256GCM
- ECDH-ES+A128KW, ECDH-ES+A192KW, ECDH-ES+A256KW encryption with A128CBC-HS256, A128GCM, A192GCM, A256GCM
- PBES2-HS256+A128KW, PBES2-HS384+A192KW, PBES2-HS512+A256KW with A128CBC-HS256, A192CBC-HS384, A256CBC-HS512, A128GCM, A192GCM, A256GCM

Compression:

- DEFLATE compression

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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.

This package has no dependencies.

GitHub repositories (18)

Showing the top 18 popular GitHub repositories that depend on jose-jwt:

Repository Stars
duplicati/duplicati
Store securely encrypted backups in the cloud!
xamarin/ios-samples
Xamarin.iOS sample apps
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
cocoa-mhlw/cocoa
Soluto/kamus
An open source, git-ops, zero-trust secret encryption and decryption solution for Kubernetes applications
NiclasOlofsson/MiNET
A (not so) basic Minecraft Pocket Edition server written in C#
ConcreteMC/Alex
A Minecraft client written in C# aimed at compatibility with MC:Java & MC:Bedrock
microsoft/winget-create
The Windows Package Manager Manifest Creator command-line tool (aka wingetcreate)
grissomlau/jimu
.netcore micro service framework
CCob/okta-terrify
Okta Verify and Okta FastPass Abuse Tool
Adamant-im/adamant-notificationService
ADAMANT push Notification Service for iOS Messenger app
OpenTouryoProject/OpenTouryo
”Open棟梁”は、長年の.NETアプリケーション開発実績にて蓄積したノウハウに基づき開発した.NET用アプリケーション フレームワークです。 (”OpenTouryo” , is an application framework for .NET which was developed using the accumulated know-how with a long track record in .NET application development.)
Blank-c/Umbral-Stealer
Umbral Stealer is a fast, lightweight stealer written in C#. The collected data is transferred through discord webhooks.
CCob/Shwmae
admin-shell-io/aasx-package-explorer
C# based viewer / editor for the Asset Administration Shell
oidcproxydotnet/OidcProxy.Net
An extendible framework for .NET to implement the BFF Security Pattern (a.k.a. Token Handler Pattern) in Single Page Applications
JornWildt/Mason
Documentation and examples for the Mason media type
Vonage/vonage-dotnet-sdk
Vonage REST API client for .NET, written in C#. API support for SMS, Voice, Text-to-Speech, Numbers, Verify (2FA) and more.
Version Downloads Last updated
1.8.0 938 10/22/2014
1.7.0 591 7/9/2014
1.6.0 98 6/20/2014
1.5.0 54 6/17/2014
1.4.0 61 6/9/2014
1.3.0 53 6/2/2014
1.2.0 72 4/12/2014
1.1.0 99 3/22/2014
1.0.0 55 3/11/2014

RSA-OAEP-256 (using SHA-256 hash) added to match latest spec version.