Message 158021 - Python tracker
> if response == digest: > can be replaced by: > if sum(x^y for x, y in itertools.zip_longest(response, digest, > fillvalue=256)) == 0: Yeah, sure, but is it useful at all? The digest changes at every connection attempt, so this should not be exploitable.