Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | hide symbols in dsa | beck | 2023-07-08 | 1 | -1/+8 |
| | | | | ok tb@ | ||||
* | 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 | ||||
* | fix NULL return adding missing semicolon | bcook | 2022-07-11 | 1 | -2/+2 |
| | | | | ok tb@ | ||||
* | Prepare to provide DSA_meth_{get0,set1}_name() | tb | 2022-07-04 | 1 | -5/+28 |
| | | | | | | | | Also follow OpenSSL by making the name non-const to avoid ugly casting. Used by OpenSC's pkcs11-helper, as reported by Fabrice Fontaine in https://github.com/libressl-portable/openbsd/issues/130 ok jsing sthen | ||||
* | zap stray tab | tb | 2022-05-07 | 1 | -2/+2 |
| | |||||
* | Prepare the move of DSA_SIG, DSA_METHOD and DSA to dsa_locl.h by | tb | 2022-01-07 | 1 | -1/+3 |
| | | | | | | including the local header where it will be needed. discussed with jsing | ||||
* | Add DSA_meth_{dup,free,new,set_{finish,sign}}() | tb | 2018-03-17 | 1 | -0/+78 |
As in RSA_meth_*, note that these functions return NULL in out-of-memory situations, but they do not set an error explicitly. ok jsing |