JSON Web Token Authentication with C#
A guide on how to implement JSON Web Token (JWT) authentication in C#. This article will show how to create, sign, and validate JWTs to secure APIs and authenticate users.
In this article, we will explore how to use JSON Web Token (JWT) in C# to authenticate users. JWT is an open standard for securely encoding user information, commonly used to secure APIs. We will learn how to generate a JWT, sign it with a secret key, and validate the JWT when receiving user requests.
C# Code:
using System;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
using System.Text;
using Microsoft.IdentityModel.Tokens;
class Program
{
// Generate and sign JWT
public static string GenerateJwtToken(string username, string secretKey)
{
// Claims to include in the JWT
var claims = new[]
{
new Claim(JwtRegisteredClaimNames.Sub, username),
new Claim(JwtRegisteredClaimNames.Jti, Guid.NewGuid().ToString()),
};
// Encode the security key
var key = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(secretKey));
var creds = new SigningCredentials(key, SecurityAlgorithms.HmacSha256);
// Create the token
var token = new JwtSecurityToken(
issuer: "yourapp.com",
audience: "yourapp.com",
claims: claims,
expires: DateTime.Now.AddMinutes(30),
signingCredentials: creds
);
return new JwtSecurityTokenHandler().WriteToken(token);
}
// Validate JWT
public static ClaimsPrincipal ValidateJwtToken(string token, string secretKey)
{
var tokenHandler = new JwtSecurityTokenHandler();
var key = Encoding.UTF8.GetBytes(secretKey);
// Token validation parameters
var validationParameters = new TokenValidationParameters
{
ValidateIssuer = true,
ValidateAudience = true,
ValidateIssuerSigningKey = true,
ValidIssuer = "yourapp.com",
ValidAudience = "yourapp.com",
IssuerSigningKey = new SymmetricSecurityKey(key),
ValidateLifetime = true,
ClockSkew = TimeSpan.Zero
};
try
{
var principal = tokenHandler.ValidateToken(token, validationParameters, out SecurityToken validatedToken);
return principal;
}
catch
{
return null; // Token is invalid
}
}
static void Main()
{
string secretKey = "your-256-bit-secret"; // Your secret key
string token = GenerateJwtToken("user123", secretKey);
Console.WriteLine("JWT Token: " + token);
var claimsPrincipal = ValidateJwtToken(token, secretKey);
if (claimsPrincipal != null)
{
Console.WriteLine("Valid token. User: " + claimsPrincipal.Identity.Name);
}
else
{
Console.WriteLine("Invalid token");
}
}
}
Detailed explanation:
-
new Claim(JwtRegisteredClaimNames.Sub, username)
: Adds user information to the JWT. -
new SymmetricSecurityKey(...)
: Creates a symmetric security key from the secret string. -
new JwtSecurityToken(...)
: Generates a new token containing user info, expiration time, and signing credentials. -
tokenHandler.ValidateToken(...)
: Validates the JWT based on parameters such as the secret key and expiration time.
System requirements:
- .NET Core or .NET Framework
-
System.IdentityModel.Tokens.Jwt
library
How to install the libraries:
Run the following command to install the JWT library in C#:
dotnet add package System.IdentityModel.Tokens.Jwt
Tips:
- Always store secret keys securely and avoid hardcoding them in your source code.
- Use HTTPS to ensure secure transmission of JWTs over the network.