Skip to content

Commit

Permalink
securitykey changed to requirement sha256 size
Browse files Browse the repository at this point in the history
  • Loading branch information
victorioustr committed Mar 16, 2024
1 parent 44119e3 commit a56f948
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Tests/Helpers/Token/MockJwtTokens.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
using System;
using System;
using System.Collections.Generic;
using System.IdentityModel.Tokens.Jwt;
using System.Security.Claims;
Expand All @@ -10,7 +10,7 @@ namespace Tests.Helpers.Token
public static class MockJwtTokens
{
private static readonly JwtSecurityTokenHandler s_tokenHandler = new ();
private static string s_keyString = "!z2x3C4v5B*_*!z2x3C4v5B*_*";
private static string s_keyString = "!z2x3C4v5B*_*!z2x3C4v5B*_*!z2x3C4v5B*_*";

static MockJwtTokens()
{
Expand Down
2 changes: 1 addition & 1 deletion WebAPI/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"Audience": "www.devarchitecture.com",
"Issuer": "www.devarchitecture.com",
"AccessTokenExpiration": 10,
"SecurityKey": "!z2x3C4v5B*_*!z2x3C4v5B*_*"
"SecurityKey": "!z2x3C4v5B*_*!z2x3C4v5B*_*!z2x3C4v5B*_*"
},
"EmailConfiguration": {
"SmtpServer": "smtp.live.com",
Expand Down

0 comments on commit a56f948

Please sign in to comment.