I am porting some compact framework code that uses the RESTful service for Windows Phone 7. The REST service requires hash signatures and the md5 method.
This code (which worked in NETCF) no longer compiles, and I do not see anything related to MD5 in the object browser.
MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); buffer = md5.ComputeHash(buffer);
Is md5 not supported in WP7?
windows-phone-7 md5
dkackman
source share