online_security_project/lib/Crypto.cs
2024-12-14 19:10:09 +02:00

11 lines
No EOL
161 B
C#

using System.Security.Cryptography;
namespace lib;
public static class Crypto {
public static RSA GenerateKey() {
return RSA.Create(512);
}
}