Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make internal header file names consistent | tb | 2022-11-26 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | Libcrypto currently has a mess of *_lcl.h, *_locl.h, and *_local.h names used for internal headers. Move all these headers we inherited from OpenSSL to *_local.h, reserving the name *_internal.h for our own code. Similarly, move dtls_locl.h and ssl_locl.h to dtls_local and ssl_local.h. constant_time_locl.h is moved to constant_time.h since it's special. Adjust all .c files in libcrypto, libssl and regress. The diff is mechanical with the exception of tls13_quic.c, where #include <ssl_locl.h> was fixed manually. discussed with jsing, no objection bcook | ||||
* | Hide public symbols in libcrypto/x509 .c files | beck | 2022-11-14 | 1 | -1/+11 |
| | | | | ok tb@ | ||||
* | Plug leak in X509V3_add1_i2d() | tb | 2022-07-24 | 1 | -2/+3 |
| | | | | | | | | Do not leak the extension that was deleted from the stack. via OpenSSL c3efe5c9. ok jsing | ||||
* | Move the now internal X.509-related structs into x509_lcl.h. | tb | 2021-11-01 | 1 | -1/+2 |
| | | | | | | | | Garbage collect the now unused LIBRESSL_CRYPTO_INTERNAL and LIBRESSL_OPAQUE_X509. Include "x509_lcl.h" where needed and fix a couple of unnecessary reacharounds. ok jsing | ||||
* | Fix potential leak when tmpext fails to be added to | beck | 2020-09-14 | 1 | -2/+6 |
| | | | | | | | the extension list. found by llvm static analyzer ok tb@ | ||||
* | Collapse the x509v3 directory into x509. | jsing | 2020-06-04 | 1 | -0/+358 |
This avoids the need to grep across directories to find functions and prepares for further rototilling and chainsawing. Discussed with tb@ (who also tested the release build) |