How can I fill RSA structure with xml-formatted public key for using with RSA functions on Mac OS X. In other words: There are following windows c# statements:
RSACryptoServiceProvider rSA = new RSACryptoServiceProvider();
rSA.FromXmlString(xmlKey);
return rSA.VerifyData(Encoding.UTF8.GetBytes(message), "MD5", signature);
how can I convert it to use with cocoa frameworks.
Thanks, Vlad