Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: code_byte, 0, todecode_byte.Length); char[] decoded_char = new char[charCount]; Decode.GetChars(todecode_byte, 0, todecode_byte.Length, decoded_char, 0); decryptpwd = new String(decoded_char); return decryptpwd; } string password = "prabu"; string encryptdata = Encryptdata(password); string decryptdata = Decryptdata(password); using System; using System.Security.Cryptography; public interface ISaltedHash { /// <summary> /// Gets the hash. /// </summary> string H […]
↧