diff options
author | Christian Heimes <christian@python.org> | 2022-03-26 19:52:24 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-26 19:52:24 (GMT) |
commit | b16b6bb8dacc41e9e569783890b0c88fcd3b24e8 (patch) | |
tree | 5e3c08a7bd917d3f45ddc4a8e195023e3d482731 /Modules/_blake2/blake2module.c | |
parent | c23ddf5ec229b7302437a1cf32d366df5cc5b837 (diff) | |
download | cpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.zip cpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.tar.gz cpython-b16b6bb8dacc41e9e569783890b0c88fcd3b24e8.tar.bz2 |
bpo-47095: Use libb2 to provide blake2 implementation (GH-32059)
Diffstat (limited to 'Modules/_blake2/blake2module.c')
-rw-r--r-- | Modules/_blake2/blake2module.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Modules/_blake2/blake2module.c b/Modules/_blake2/blake2module.c index 3b6bba2..44d783b 100644 --- a/Modules/_blake2/blake2module.c +++ b/Modules/_blake2/blake2module.c @@ -13,8 +13,7 @@ #endif #include "Python.h" - -#include "impl/blake2.h" +#include "blake2module.h" extern PyType_Spec blake2b_type_spec; extern PyType_Spec blake2s_type_spec; |