Skip to content

Commit

Permalink
changed secret to long string
Browse files Browse the repository at this point in the history
  • Loading branch information
leastprivilege committed Sep 1, 2023
1 parent 6c3f9aa commit 6e1263c
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Config.cs
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public static class Config
ClientId = "code1",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Code,
Expand All @@ -105,7 +105,7 @@ public static class Config
ClientId = "code1front",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Code,
Expand All @@ -126,7 +126,7 @@ public static class Config
ClientId = "code1back",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Code,
Expand All @@ -147,7 +147,7 @@ public static class Config
ClientId = "code2",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Code,
Expand All @@ -171,7 +171,7 @@ public static class Config
ClientId = "hybrid1",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Hybrid,
Expand All @@ -190,7 +190,7 @@ public static class Config
ClientId = "hybrid1front",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Hybrid,
Expand All @@ -212,7 +212,7 @@ public static class Config
ClientId = "hybrid1back",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Hybrid,
Expand All @@ -235,7 +235,7 @@ public static class Config
ClientId = "hybrid2",
ClientSecrets =
{
new Secret("secret".ToSha256())
new Secret("9u30jjd8dj83jh98jdj898j8jsd89j983hh8ddh".ToSha256())
},

AllowedGrantTypes = GrantTypes.Hybrid,
Expand Down

0 comments on commit 6e1263c

Please sign in to comment.