We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MD2 algorithm takes up a ton of CPU, 100% on one of my cores on my machine image: My assumption is that the issue is probably here:
def digest(self): buf = pad(self.buf, self.digest_size) c = list(self.c) checksum(c, buf) #print "*** checksum after padding = ", hexstr(c) d = list(self.d) digest(d, buf) digest(d, c) return d[0:16]
There's a lot of recursion here, so I'm going to look into making the MD2 algorithm much faster.
The text was updated successfully, but these errors were encountered:
Ekultek
No branches or pull requests
MD2 algorithm takes up a ton of CPU, 100% on one of my cores on my machine image:
My assumption is that the issue is probably here:
There's a lot of recursion here, so I'm going to look into making the MD2 algorithm much faster.
The text was updated successfully, but these errors were encountered: