Skip to content
New issue

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

If you wonder why crc32(crack(x)) not equal to x #5

Open
basinilya opened this issue Nov 16, 2024 · 0 comments
Open

If you wonder why crc32(crack(x)) not equal to x #5

basinilya opened this issue Nov 16, 2024 · 0 comments

Comments

@basinilya
Copy link

crack() returns List of int, but these Integers should not be hashed as 32 bits directly. You need to format them as decimal strings, then treat each digit as an ASCII character and update CRC32 with it.

crack() will return an empty list if it can't find a relatively short sequence of decimal characters even if the given hash can be computed with letters or non-printable bytes.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant