mirror of
https://github.com/python/cpython.git
synced 2025-07-07 19:35:27 +00:00

* simplify HACL* build for MD5, SHA1, SHA2 and SHA3 modules * remove statically linked libraries for HACL* implementation * is it better now? * is it better now? * fixup * Present HACL* as a static or shared library. On WASI, extension modules based on HACL* require the HACL* library to be linked statically. On other platforms, it can be built dynamically. * amend whitespace * remove temporary .so file as it requires more symlinks * avoid smelly symbols * fixup checksums * regen sbom * fixup shell warnings and comments * it *should* work
6 lines
207 B
C
6 lines
207 B
C
#include <inttypes.h>
|
|
#include "python_hacl_namespaces.h"
|
|
|
|
void Lib_Memzero0_memzero0(void *dst, uint64_t len);
|
|
|
|
#define Lib_Memzero0_memzero(dst, len, t, _ret_t) Lib_Memzero0_memzero0(dst, len * sizeof(t))
|