Skip to content

Commit

Permalink
fix(oauth2client): increase rsa key size from 1024 to 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Dec 9, 2023
1 parent ddad8b0 commit 56f4ed8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DisCatSharp/Clients/DiscordOAuth2Client.cs
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ public DiscordOAuth2Client(
this.ApiClient.Rest.HttpClient.DefaultRequestHeaders.TryAddWithoutValidation("User-Agent", this.VersionHeader);

this.OAuth2ClientErroredInternal = new("CLIENT_ERRORED", EventExecutionLimit, this.Goof);
this.RSA = RSA.Create(1024);
this.RSA = RSA.Create(2048);
}

/// <summary>
Expand Down

0 comments on commit 56f4ed8

Please sign in to comment.