aboutsummaryrefslogtreecommitdiff
path: root/ssl (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-07-09tls1_prf is in kdf/, not in hkdf/Theo Buehler1-1/+1
2024-07-09Add tls1_prf.c to buildTheo Buehler2-0/+2
2024-07-09Update ChangeLogTheo Buehler1-0/+1
2024-07-09Update ChangeLogTheo Buehler1-0/+2
2024-07-08Update ChangeLogTheo Buehler1-0/+1
2024-07-08spkac.c is no moreTheo Buehler2-2/+0
2024-06-28Update ChangeLogTheo Buehler1-0/+4
2024-06-25reach from ssl into crypto for crypto_internal.hTheo Buehler2-0/+2
2024-06-25Need to pass crypto/err to -ITheo Buehler2-0/+2
2024-06-25Update ChangeLogTheo Buehler1-0/+4
2024-06-24Update ChangeLogTheo Buehler1-0/+1
2024-06-24Link err_local.h to buildTheo Buehler1-0/+1
2024-06-22Update ChangeLogTheo Buehler1-0/+1
2024-06-20add note about using emcmake with Emscripten in specific systems sectionMoustaphaSaad1-0/+12
2024-06-20add Emscripten to compatible operating systems listMoustaphaSaad1-0/+1
2024-06-19Update ChangeLogTheo Buehler1-0/+3
2024-06-19Update ChangeLogTheo Buehler1-0/+1
2024-06-19grammar tweakTheo Buehler1-2/+2
2024-06-19Fix comment in emscripten.ymlMostafa Saad1-1/+1
Co-authored-by: Joshua Sing <joshua@joshuasing.dev>
2024-06-19use compat implementations of strlcpy and strlcatMoustaphaSaad1-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-19call prepare_emscripten_test_target for x509_asn1 to fix an OOM errorMoustaphaSaad1-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-19group testdsa, testenc, and testrsa under a single if(NOT EMSCRIPTEN)MoustaphaSaad1-13/+5
2024-06-19use -gsource-map instead of -ggdbMoustaphaSaad1-1/+1
2024-06-19replace if(EMSCRIPTEN) with prepare_emscripten_test_target functionMoustaphaSaad1-36/+31
introduce prepare_emscripten_test_target function to setup `--preload-file` and `-sALLOW_MEMORY_GROWTH` linker flags for test targets
2024-06-19fix emscripten.yml workflowMoustaphaSaad1-4/+7
fix formatting in some commands. Add missing -fsanitize=address to the ASAN test
2024-06-19simplify explicit_bzero commentMoustaphaSaad1-2/+1
2024-06-19use emcmake instead of feeding toolchain file manuallyMoustaphaSaad1-2/+2
2024-06-19wrap bn_unit ALLOW_MEMORY_GROWTH in if(EMSCRIPTEN)MoustaphaSaad1-1/+3