Bca.Jwt 0.0.2

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

// Install Bca.Jwt as a Cake Tool
#tool nuget:?package=Bca.Jwt&version=0.0.2

Module to manage JWT tokens.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

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
0.1.0 583 9/18/2020
0.0.2 491 7/14/2020
0.0.1 531 7/13/2020

0.0.2:
- New-JwToken: Added parameter Certificate to sign token with a certificate when using RSA algorithms, the certificate nust contain the private key.
- New-JwToken: Added new common optional parameters (such as Type, KeyId and Subject).
- New-JwToken: Expiration parameter can now either be a number of seconds for which the token is valid, or the UNIX date until which the token will be valid.
- New-JwToken: Fixed empty optional parameters, if optional parameters are not provided, they will be omitted instead of being empty.
- Added new tests.

0.0.1:
- First Version
- New-JwtToken: Function to create a JWT token (support HS256, HS384, HS512, RS256, RS384, RS512 so far).
- ConvertFrom-JwtToken: Function to convert a raw JWT token to an object.
- ConvertTo-JwtToken: Function to convert a token object to raw JWT token.
- Test-JwtToken: Function to test is a jwt token is structuraly valid.