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