Paseto.NET, a Paseto (Platform-Agnostic Security Tokens) implementation for .NET
PASETO protocols
purpose | v1 | v2 | v3 | v4 |
---|---|---|---|---|
local | β | β | β | β |
public | β | β | β | β |
PASERK extension
type | support |
---|---|
lid | β |
local | β |
seal | β |
local-wrap | β |
local-pw | β |
sid | β |
public | β |
pid | β |
secret | β |
secret-wrap | β |
secret-pw | β |
Install the Paseto.Core NuGet package from the .NET CLI using:
dotnet add package Paseto.Core
or from the NuGet package manager:
Install-Package Paseto.Core
The library exposes a Fluent API with several method overloads found in Use()
, WithKey()
, AddClaim()
, AddFooter()
and so on to provide the flexibility needed for encoding and decoding PASETO tokens and also for generating the required symmetric or asymmetric key pairs. However, you can use the Protocols and Handlers directly if you like.
Below are a couple of examples for the most common use cases:
var pasetoKey = new PasetoBuilder().Use(version, Purpose.Local)
.GenerateSymmetricKey();
var pasetoKey = new PasetoBuilder().Use(version, Purpose.Public)
.GenerateAsymmetricKeyPair(seed);
NOTE: A seed is not required for protocol v1.
var token = new PasetoBuilder().Use(version, purpose)
.WithKey(key)
.AddClaim("data", "this is a secret message")
.Issuer("https://github.com/daviddesmet/paseto-dotnet")
.Subject(Guid.NewGuid().ToString())
.Audience("https://paseto.io")
.NotBefore(DateTime.UtcNow.AddMinutes(5))
.IssuedAt(DateTime.UtcNow)
.Expiration(DateTime.UtcNow.AddHours(1))
.TokenIdentifier("123456ABCD")
.AddFooter("arbitrary-string-that-isn't-json")
.Encode();
var result = new PasetoBuilder().Use(version, purpose)
.WithKey(key)
.Decode(token);
Or validate the token's payload while decoding (the header and signature is always validated):
var valParams = new PasetoTokenValidationParameters
{
ValidateLifetime = true,
ValidateAudience = true,
ValidateIssuer = true,
ValidAudience = "https://paseto.io",
ValidIssuer = "https://github.com/daviddesmet/paseto-dotnet"
};
var result = new PasetoBuilder().Use(version, purpose)
.WithKey(key)
.Decode(token, valParams);
The library also provides the PASERK extension for encoding and decoding a key.
A serialized key in PASERK has the format:
k[version].[type].[data]
var paserk = Paserk.Encode(pasetoKey, type);
var key = Paserk.Decode(paserk);
- Add support for remaining PASERK types and its operations.
- Add support for version detection when decoding.
- Add support for custom payload validation rules.
- Improve documentation.
- Includes the mandatory test vectors for PASETO and PASERK.
- Uses Ed25519 (EdDSA over Curve25519) algorithm from CodesInChaos Chaos.NaCl cryptography library.
- Uses Blake2b cryptographic hash function from Konscious.Security.Cryptography repository.
- Uses AES-256-CTR, ECDSA over P-384 algorithms from Bouncy Castle cryptography library.
- Uses XChaCha20-Poly1305 AEAD from NaCl.Core repository.
- PASETO (Platform-Agnostic SEcurity TOkens) is a specification and reference implementation for secure stateless tokens.
- PASERK (Platform-Agnostic SERialized Keys) is an extension to PASETO that provides key-wrapping and serialization.