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

Use strtoul instead of sscanf for numeric prefix #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

flandr
Copy link

@flandr flandr commented Mar 16, 2021

sscanf consumes the entire string and is much slower than strtoul when
reading the block size at the prefix of digest strings. This is the
dominant cost of digest comparisons with incomparable block sizes (~ 80%
slower than using strtoul), but is still a significant contribution (>
15%) of full digest comparisons.

sscanf consumes the entire string and is much slower than strtoul when
reading the block size at the prefix of digest strings. This is the
dominant cost of digest comparisons with incomparable block sizes (~ 80%
slower than using strtoul), but is still a significant contribution (>
15%) of full digest comparisons.
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

Successfully merging this pull request may close these issues.

1 participant