8000 gh-99108: Initial import of HACL-SHA3 into Python by msprotz · Pull Request #103597 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-99108: Initial import of HACL-SHA3 into Python #103597

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

Merged
merged 15 commits into from
May 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make regen after I fixed up a comment
  • Loading branch information
msprotz committed Apr 17, 2023
commit fe8797010ae0ee42679e19cacd47e5f3c8a5d93b
4 changes: 2 additions & 2 deletions Modules/clinic/sha3module.c.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Modules/sha3module.c
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ Return a new SHA3 hash object.

static PyObject *
py_sha3_new_impl(PyTypeObject *type, PyObject *data, int usedforsecurity)
/*[clinic end generated code: output=90409addc5d5e8b0 input=bcfcdf2e4368347a]*/
/*[clinic end generated code: output=90409addc5d5e8b0 input=637e5f8f6a93982a]*/
{
Py_buffer buf = {NULL, NULL};
SHA3State *state = _PyType_GetModuleState(type);
Expand Down
0