Created
November 26, 2012 23:33
-
-
Save pmhsfelix/4151369 to your computer and use it in GitHub Desktop.
Generating and validating JWT tokens using JWTSecurityTokenHandler
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Fact] | |
public void First() | |
{ | |
var tokenHandler = new JWTSecurityTokenHandler(); | |
var symmetricKey = GetRandomBytes(256/8); | |
var now = DateTime.UtcNow; | |
var tokenDescriptor = new SecurityTokenDescriptor | |
{ | |
Subject = new ClaimsIdentity(new Claim[] | |
{ | |
new Claim(ClaimTypes.Name, "Pedro"), | |
new Claim(ClaimTypes.Role, "Author"), | |
}), | |
TokenIssuerName = "self", | |
AppliesToAddress = "http://www.example.com", | |
Lifetime = new Lifetime(now, now.AddMinutes(2)), | |
SigningCredentials = new SigningCredentials( | |
new InMemorySymmetricSecurityKey(symmetricKey), | |
"http://www.w3.org/2001/04/xmldsig-more#hmac-sha256", | |
"http://www.w3.org/2001/04/xmlenc#sha256"), | |
}; | |
var token = tokenHandler.CreateToken(tokenDescriptor); | |
var tokenString = tokenHandler.WriteToken(token); | |
Console.WriteLine(tokenString); | |
var validationParameters = new TokenValidationParameters() | |
{ | |
AllowedAudience = "http://www.example.com", | |
SigningToken = new BinarySecretSecurityToken(symmetricKey), | |
ValidIssuer = "self" | |
}; | |
var principal = tokenHandler.ValidateToken(tokenString, validationParameters); | |
Assert.True(principal.Identities.First().Claims | |
.Any(c => c.Type == ClaimTypes.Name && c.Value == "Pedro")); | |
Assert.True(principal.Identities.First().Claims | |
.Any(c => c.Type == ClaimTypes.Role && c.Value == "Author")); | |
} | |
} |
Let me know if my approach needs to be changed.
why arent you at your post tk421 come in please....
Ha...
Thanks for this.. Has been helpful in getting me started.... some syntax.... in my build with VS studio 2017 community... Jwt... is JWT then the rest works fine..
this code is working fine for genration of JWT Token
////////---////////////////
public static string GenerateToken(string username, int expireMinutes = 20)
{
//Set issued at date
DateTime issuedAt = DateTime.UtcNow;
//set the time when it expires
DateTime expires = DateTime.UtcNow.AddDays(7);
//http://stackoverflow.com/questions/18223868/how-to-encrypt-jwt-security-token
var tokenHandler = new JwtSecurityTokenHandler();
//create a identity and add claims to the user which we want to log in
ClaimsIdentity claimsIdentity = new ClaimsIdentity(new[]
{
new Claim(ClaimTypes.Name, username)
});
const string sec = "401b09eab3c013d4ca54922bb802bec8fd5318192b0a75f201d8b3727429090fb337591abd3e44453b954555b7a0812e1081c39b740293f765eae731f5a65ed1";
var now = DateTime.UtcNow;
var securityKey = new Microsoft.IdentityModel.Tokens.SymmetricSecurityKey(System.Text.Encoding.Default.GetBytes(sec));
var signingCredentials = new Microsoft.IdentityModel.Tokens.SigningCredentials(securityKey, Microsoft.IdentityModel.Tokens.SecurityAlgorithms.HmacSha256Signature);
//create the jwt
var token =
(JwtSecurityToken)
tokenHandler.CreateJwtSecurityToken(issuer: "http://localhost:50191", audience: "http://localhost:50191",
subject: claimsIdentity, notBefore: issuedAt, expires: expires, signingCredentials: signingCredentials);
var tokenString = tokenHandler.WriteToken(token);
return tokenString;
}
please do this: var symmetricKey = (byte[]) GetRandomBytes(256 / 8);
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I created the console app to create JWT token. But still i am unable to login using the SSO in successful.
I have a private key . Need to know wheather i read the key in proper way and building the token.
My code 👍
using System.Configuration;
using System;
using System.Collections.Generic;
using System.IdentityModel.Tokens.Jwt;
using System.IO;
using System.Security.Claims;
using Microsoft.IdentityModel.Tokens;
using System.Security.Cryptography;
namespace testtoken
{
public class Program
{
///
/// Main method, which invokes sub methods to create Jwt Token.
///
public static void Main(string[] args)
{
// Create the file object to log the data.
// Log file path detailed in config file.
StreamWriter tokenFile = File.AppendText(ConfigurationManager.AppSettings.Get(("path")));
Log("Jwt Token File Log.", tokenFile);
Log("--------------------------", tokenFile);
Log("", tokenFile);
Log("Timestamp : " + DateTime.Now.ToString("yyyy-MM-dd:HH:mm:ss:fff"), tokenFile);
Log("Call a method GenerateJwtToken() to create the token object", tokenFile);
}