diff --git a/Integrations/Cod/SecureRcon/Helpers.cs b/Integrations/Cod/SecureRcon/Helpers.cs index 307500164..3810bf3c1 100644 --- a/Integrations/Cod/SecureRcon/Helpers.cs +++ b/Integrations/Cod/SecureRcon/Helpers.cs @@ -17,7 +17,7 @@ public static class Helpers private static byte[] SignData(byte[] data, string privateKey) { - using var rsa = new RSACryptoServiceProvider(512); + using var rsa = new RSACryptoServiceProvider(); rsa.ImportFromPem(privateKey); var rsaFormatter = new RSAPKCS1SignatureFormatter(rsa); rsaFormatter.SetHashAlgorithm("SHA512");