Parallel brute force: Difference between revisions

m
Moved variable "s".
m (Moved variable "s".)
Line 1,434:
## of "a" and check if their hash matches one of the targets.
## Print the string and the hash value if a match is found.
var s: array[5, char]
for b in Letters:
for c in Letters:
for d in Letters:
for e in Letters:
let s = [a, b, c, d, e]
let h = sha256.digest(s)
for i, target in Hashes:
Anonymous user