- Notifications
You must be signed in to change notification settings - Fork5.1k
Use stack buffers and return data to pool in EC point encoding#69812
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
ghost commentedMay 25, 2022
Tagging subscribers to this area: @dotnet/area-system-security,@vcsjones Issue DetailsThis all started because
|
I'm super confused by CI. It appears to be running jitstress and outer loop for some reason. |
#69813 sees the same failures launching the Quic tests, and everything seems to be launching jitstress and outerloop with no access token... so... merging. |
Uh oh!
There was an error while loading.Please reload this page.
This all started because
WriteUncompressedPublicKey
was renting fromCryptoPool
and never returning the rented buffer. So I fixed that. But oh, wait, these buffers fit pretty comfortably in the stack, so let's do that while we're here.