Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Hide symbols in rsa | beck | 2023-07-08 | 1 | -1/+32 |
| | | | | 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 | ||||
* | Sync with changes in dsa_meth.c | tb | 2022-07-04 | 1 | -9/+10 |
| | | | | pointed out by jsing | ||||
* | Prepare to make RSA and RSA_METHOD opaque by including rsa_locl.h | tb | 2022-01-07 | 1 | -1/+3 |
| | | | | | | where it will be needed in the upcoming bump. discussed with jsing | ||||
* | provide getters and setters for the RSA_METHOD interface | gilles | 2019-06-05 | 1 | -1/+172 |
| | | | | ok tb@, jsing@, sthen@ | ||||
* | Add some accessor functions: | djm | 2018-09-12 | 1 | -1/+19 |
| | | | | | | RSA_meth_get_finish() RSA_meth_set1_name() EVP_CIPHER_CTX_(get|set)_iv() feedback and ok jsing@ tb@ | ||||
* | Provide RSA_meth_{dup,free,new,set_{finish,priv_{dec,enc}}}() | tb | 2018-03-17 | 1 | -0/+86 |
Note that these functions return NULL in out-of-memory situations, but contrary to OpenSSL's versions they do not set an error. ok jsing |