Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Hide a couple of LCRYPTO_UNUSED in asn1.h | beck | 2024-04-10 | 1 | -1/+2 |
| | | | | | | and remove the LIBRESSL_INTERNAL guards around them ok tb@ | ||||
* | Unbreak the namespace build after a broken mk.conf and tool misfire had | beck | 2023-07-07 | 1 | -2/+1 |
| | | | | | | | | me aliasing symbols not in the headers I was procesing. This unbreaks the namespace build so it will pass again ok tb@ | ||||
* | Hide symbols in asn1 and bio | beck | 2023-07-05 | 1 | -1/+6 |
| | | | | ok jsing@ | ||||
* | 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 | ||||
* | Indent goto labels for diffability. | jsing | 2021-12-25 | 1 | -2/+2 |
| | | | | Whitespace change only. | ||||
* | More consolidation of ASN.1 code. | jsing | 2021-12-25 | 1 | -0/+180 |
Consolidate various ASN1_item_* functions into asn1_item.c and the remaining NO_OLD_ASN1 code (not to be confused with the NO_ASN1_OLD code) into asn1_old.c. This is preferable to having many files, often with one or two functions per file. No functional change. Discussed with tb@ |