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

Optimize saslprep by checking if input is only ASCII printable characters #1

Open
xdg opened this issue Feb 18, 2018 · 0 comments
Open

Comments

@xdg
Copy link
Collaborator

xdg commented Feb 18, 2018

If the characters in the input string are all ASCII printable (0x20 - 0x7E), then checking every rune for mapping/prohibition/etc. is unnecessary and expensive. At the cost of an additional pass over the string, this common case can be made much faster.

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