0 LIKES LikeUnLike
byte[] bytes = ASCIIEncoding.ASCII.GetBytes(textBox1.Te...int hash = 1;for (int n = 0; n < 10000; n++){ for (int i = 0; i < bytes.Length; i++) { if ((i * n) % 5 == 0) { hash *= bytes[i]; } if ((i * n) % 5 == 1) { hash += bytes[i]; } if ((i * n) % 5 == 2) { hash -= bytes[i]; } if ((i * n) % 5 == 3) { hash += bytes[i]; } if ((i * n) % 5 == 4) { hash *= bytes[i]; } }}return hash
Tags:
Report (0) (0) | earlier
Latest activity: earlier. This question has 1 answers.