C# RSA密钥长度定义

            System.Security.Cryptography.RSACryptoServiceProvider cryptoServiceProvider = new System.Security.Cryptography.RSACryptoServiceProvider(4096);
            Console.WriteLine(cryptoServiceProvider.ToXmlString(false));
            Console.WriteLine(cryptoServiceProvider.ToXmlString(true));
原文地址:https://www.cnblogs.com/honk/p/14601389.html