I am carrying out a PDA version application from windows version.
But found out Rfc2898DeriveBytes isn’t supported by WM.
So how could I do to replace this piece of code in WM and change nothing about the algorithm?
Many thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could check out this on koders.com, it is part of the DotGNU Portable .NET source.
‘DeriveBytes.cs‘
‘Rfc2898DeriveBytes‘ (This is a inherited class from DeriveBytes…)
On another note, you could check the OpenNETCF Smart Device Framework Community Edition, they have a
DeriveBytesclass, so you could extend it by inheriting from it to make theRfc2898DeriveBytesimplementation by copying/pasting the code from koders.com.Hope this helps,
Best regards,
Tom.