Thanks for your time, everyone. My goal is to end up with, either as a byte array or string, my public key.
RSACryptoServiceProvider rsa = new RSACryptoServiceProvider();
string publicxml = rsa.ToXmlString(false);
string publicxml
now contains a modulus and exponent. My question is, using these values, how can I generate a single public key to distribute to those who need it?
In a more general sense, how do we generally combine exponents and moduli to make public keys?
Thanks!