Hello all I have some cryptography code from a VS 2005 application and I'm
trying to convert it to the compact framework.
I have this line of code
rsa.FromXmlString(PriveteKey)
In the compact framework it says that FromXmlString is not a member of
RSACryptoServiceProvider although I can go to the object browser and find it
there.
Does anyone know a way around this or maybe you know why this is not
working.
Any ideas would be appriciated.
Thanx
brckelly@gmail.com - 10 Jan 2006 17:36 GMT
It is probably showing up in the object browser because you are in a
full .NET Framework project. If you were had a CF project open, that
wouldn't be there. If you look at the documentation on MSDN
(http://msdn2.microsoft.com/en-us/library/system.security.cryptography.rsacryptos
erviceprovider_members.aspx),
you will see that that method is not support in the CF.
Hope that helps.
> Hello all I have some cryptography code from a VS 2005 application and I'm
> trying to convert it to the compact framework.
[quoted text clipped - 13 lines]
>
> Thanx
brckelly@gmail.com - 10 Jan 2006 17:37 GMT
It is probably showing up in the object browser because you are in a
full .NET Framework project. If you were had a CF project open, that
wouldn't be there. If you look at the documentation on MSDN
(http://msdn2.microsoft.com/en-us/library/system.security.cryptography.rsacryptos
erviceprovider_members.aspx),
you will see that that method is not support in the CF.
Hope that helps.
> Hello all I have some cryptography code from a VS 2005 application and I'm
> trying to convert it to the compact framework.
[quoted text clipped - 13 lines]
>
> Thanx