// (c) 2006 Richard Grimes // www.grimes.demon.co.uk using System; using System.Security.Cryptography; class App { static void Main() { RSACryptoServiceProvider rsa = new RSACryptoServiceProvider(); Console.WriteLine(rsa.ToXmlString(true)); } }