I have a DotNetNuke database and an independent C# webservice. I receive two strings from the webservice, a “user code”, that allows me to identify the user, and its password. I need to compare that password with the DotNetNuke one, but I can’t find how to do it. How should I encrypt the password in order to compare it? I already have the DotNetNuke aspnet_membership registry which I need to compare with.
I have a DotNetNuke database and an independent C# webservice. I receive two strings
Share
I found it: the password can be stored with one of the following passwordFormat (set in the web.config): “Clear”, “Hashed” (it uses SHA1) and “Encrypted” (Triple-DES).