Commit message (Collapse) | Author | Files | Lines | ||
---|---|---|---|---|---|
2024-07-09 | tls1_prf is in kdf/, not in hkdf/ | Theo Buehler | 1 | -1/+1 | |
2024-07-09 | Add tls1_prf.c to build | Theo Buehler | 2 | -0/+2 | |
2024-07-09 | Update ChangeLog | Theo Buehler | 1 | -0/+1 | |
2024-07-09 | Update ChangeLog | Theo Buehler | 1 | -0/+2 | |
2024-07-08 | Update ChangeLog | Theo Buehler | 1 | -0/+1 | |
2024-07-08 | spkac.c is no more | Theo Buehler | 2 | -2/+0 | |
2024-06-28 | Update ChangeLog | Theo Buehler | 1 | -0/+4 | |
2024-06-25 | reach from ssl into crypto for crypto_internal.h | Theo Buehler | 2 | -0/+2 | |
2024-06-25 | Need to pass crypto/err to -I | Theo Buehler | 2 | -0/+2 | |
2024-06-25 | Update ChangeLog | Theo Buehler | 1 | -0/+4 | |
2024-06-24 | Update ChangeLog | Theo Buehler | 1 | -0/+1 | |
2024-06-24 | Link err_local.h to build | Theo Buehler | 1 | -0/+1 | |
2024-06-22 | Update ChangeLog | Theo Buehler | 1 | -0/+1 | |
2024-06-20 | add note about using emcmake with Emscripten in specific systems section | MoustaphaSaad | 1 | -0/+12 | |
2024-06-20 | add Emscripten to compatible operating systems list | MoustaphaSaad | 1 | -0/+1 | |
2024-06-19 | Update ChangeLog | Theo Buehler | 1 | -0/+3 | |
2024-06-19 | Update ChangeLog | Theo Buehler | 1 | -0/+1 | |
2024-06-19 | grammar tweak | Theo Buehler | 1 | -2/+2 | |
2024-06-19 | Fix comment in emscripten.yml | Mostafa Saad | 1 | -1/+1 | |
Co-authored-by: Joshua Sing <joshua@joshuasing.dev> | |||||
2024-06-19 | use compat implementations of strlcpy and strlcat | MoustaphaSaad | 1 | -7/+10 | |
strlcpy and strlcat Emscripten implementations cause ASAN errors. This commit disables strlcpy and strlcat detection and uses the compat implementations instead. | |||||
2024-06-19 | call prepare_emscripten_test_target for x509_asn1 to fix an OOM error | MoustaphaSaad | 1 | -0/+1 | |
when built in asan mode, x509_asn1 fails with an Out Of Memory error because of higher memory usage of address sanitizer. This commit sets `-sALLOW_MEMORY_GROWTH` for that target by calling prepare_emscripten_test_target | |||||
2024-06-19 | group testdsa, testenc, and testrsa under a single if(NOT EMSCRIPTEN) | MoustaphaSaad | 1 | -13/+5 | |
2024-06-19 | use -gsource-map instead of -ggdb | MoustaphaSaad | 1 | -1/+1 | |
2024-06-19 | replace if(EMSCRIPTEN) with prepare_emscripten_test_target function | MoustaphaSaad | 1 | -36/+31 | |
introduce prepare_emscripten_test_target function to setup `--preload-file` and `-sALLOW_MEMORY_GROWTH` linker flags for test targets | |||||
2024-06-19 | fix emscripten.yml workflow | MoustaphaSaad | 1 | -4/+7 | |
fix formatting in some commands. Add missing -fsanitize=address to the ASAN test | |||||
2024-06-19 | simplify explicit_bzero comment | MoustaphaSaad | 1 | -2/+1 | |
2024-06-19 | use emcmake instead of feeding toolchain file manually | MoustaphaSaad | 1 | -2/+2 | |
2024-06-19 | wrap bn_unit ALLOW_MEMORY_GROWTH in if(EMSCRIPTEN) | MoustaphaSaad | 1 | -1/+3 | |