Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: string ConvertAsciiToHex(string input) { return string.Join(string.Empty, input.Select(c => Convert.ToInt32(c).ToString("X")).ToArray()); } protected static int[] sbox = new int[256]; protected static int[] key = new int[256]; private static string password = "abc"; private static void RC4Initialize(string strPwd) { int intLength = strPwd.Length; for (int a = 0; a <= 255; a++) { [...]
↧