Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我以下密码使用什么类型的算法/哈希函数?
密码:scrambled text
scrambled text
hhhhhhhhhhhhhhh : .!_-*/P_.!_-*/P iiiiiiiiiiiiiii : / ^,+.Q^/ ^,+.Q jjjjjjjjjjjjjjj : ,#]/(-R],#]/(-R kkkkkkkkkkkkkkk : -"\.),S\-"\.),S lllllllllllllll : *%[).+T[*%[).+T
它看起来像
char[i] = someMap[i%6, char[i%6]]
子someMap[i]图顺序取自ascii。
someMap[i]
您不必猜测复制它的确切公式:c索引处的 ascii 代码字符i%6总是给出相同的字符,因此,通过 127 个测试(如果您想处理更多字符,则可以更多),您可以构建自己的地图维度127x 6。
c
i%6
127
6
请注意,您的小测试数据不可能确保没有累积函数,其中排列可能是先例字符的函数。