Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork32k
gh-99108: Refactor _sha256 & _sha512 into _sha2.#101924
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
This merges their code. They're backed by the same single HACL* star staticlibrary, having them be a single module simplifies maintenance.This should unbreak the wasm enscripten builds that currently fail due tolinking in --whole-archive mode and the HACL* library appearing twice.Long unnoticed error fixed: `_sha512.SHA384Type` was doubly assigned and wasactually SHA512Type. Nobody depends on those internal names.
bedevere-bot commentedFeb 15, 2023
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
Uh oh!
There was an error while loading.Please reload this page.
BTW, I'm pretty sure the refleaks are related to#101908. |
Misc/NEWS.d/next/Library/2023-02-15-01-54-06.gh-issue-99108.rjTSic.rst OutdatedShow resolvedHide resolved
Uh oh!
There was an error while loading.Please reload this page.
(this is how useful github vscode editor w/o ability to build and test before commit is...)
bedevere-bot commentedFeb 16, 2023
bedevere-bot commentedFeb 16, 2023
bedevere-bot commentedFeb 16, 2023
Since we plan to introduce a built-in implementation for HMAC based on HACL*,it becomes important for the HMAC tests to be flexible enough to avoid codeduplication.In addition to the new layout based on mixin classes, we extend test coverage byalso testing the `__repr__` of HMAC objects and the HMAC one-shot functions.We also fix the import to `_sha256` which, sincegh-101924, resulted in some tests beingskipped as the module is no more available (its content was moved to the `_sha2` module).
Since we plan to introduce a built-in implementation for HMAC based on HACL*,it becomes important for the HMAC tests to be flexible enough to avoid codeduplication.In addition to the new layout based on mixin classes, we extend test coverage byalso testing the `__repr__` of HMAC objects and the HMAC one-shot functions.We also fix the import to `_sha256` which, sincepythongh-101924, resulted in some tests beingskipped as the module is no more available (its content was moved to the `_sha2` module).
Uh oh!
There was an error while loading.Please reload this page.
This merges their code. They're backed by the same single HACL* static library, having them be a single module simplifies maintenance.
This should unbreak the wasm enscripten builds that currently fail due to linking in --whole-archive mode and the HACL* library appearing twice.
Long unnoticed error fixed: _sha512.SHA384Type was doubly assigned and was actually SHA512Type. Nobody depends on those internal names.
This is a followup to PRs#101707 and#101917.