how to decrypt a string
        Posted  
        
            by Avinash
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by Avinash
        
        
        
        Published on 2009-10-31T09:40:41Z
        Indexed on 
            2010/05/15
            23:20 UTC
        
        
        Read the original article
        Hit count: 375
        
Hi,
How to restore the value of a string after using FormsAuthentication.HashPasswordForStoringInConfigFile()
i have a string s1 = "abc" then
FormsAuthentication.HashPasswordForStoringInConfigFile(s1, "SHA1") = A9993E364706816ABA3E25717850C26C9CD0D89D
How can i decrypt "A9993E364706816ABA3E25717850C26C9CD0D89D" back to "abc"??
© Stack Overflow or respective owner