The issue I am facing that when the encryption and decryption is totally different in the 4.0 version. That is why I am getting wrong password error. I have more than 600 users so I can't ask everyone to reset their password. So is there any way that I can reference the encryption and decryption method in the 1.1 library. This is a vb.net project
Public Function EncryptString(ByVal l_strText As String) As String
Dim md5 As New MD5CryptoServiceProvider()
Dim encoder As New UTF8Encoding()
Dim val = encoder.GetChars(md5.ComputeHash(md5.ComputeHash(encoder.GetBytes(l_strText))))
Return encoder.GetChars(md5.ComputeHash(md5.ComputeHash(encoder.GetBytes(l_strText))))
'Return l_strText
End Function