online_security_project/lib/Crypto.cs

11 lines
161 B
C#
Raw Normal View History

2024-12-14 17:10:09 +00:00
using System.Security.Cryptography;
namespace lib;
public static class Crypto {
public static RSA GenerateKey() {
return RSA.Create(512);
}
}