-
Notifications
You must be signed in to change notification settings - Fork 31
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
1.9.0 release notes #59
Comments
LGTM
My only suggestion is to throw in the term "constant time" since I think that's maybe more approachable/familiar to a casual reader than describing the secret-dependent branches and memory accesses that constitute whether something is/isn't constant time. Perhaps something like:
|
Should we add a note on slight perf degradation? Why do we think this is better than the previous setup, is it just the constant time impl? |
I don't object to mentioning it, but I kinda struggle to come up with a scenario where parsing PEM is performance sensitive, or hinges on the difference between parsing 1.6m certificates per second vs 1.0m certificates per second. Edit: actually, added a mention specifically of key parsing costs; these are going to be significant (now measured: its about 3x slower). |
What's the aggregate effect on say, running rustls-native-certs on a Debian system? |
Good question! Looking... |
before:
after:
so, 1.8ms vs 2.1ms with just before:
after:
so, conclusion: pretty minor difference caused by this, but actually the change to enumerate directories & chase symlinks had a pretty big cost. |
Okay, good numbers! |
Should we also mention #54? |
I think this is OK in the non-headlines section; it is only is useful for testing, or ECH servers, or maybe DNS automation. |
Agreed: it's also based on a pretty obscure draft that AFAIK hasn't been adopted by any working groups. |
Sorry, not doing this in the right order. For review:
The text was updated successfully, but these errors were encountered: