summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/ecdh/ecdh_kdf.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge ECDH code that will stay into ecdh.ctb2023-07-051-121/+0
|
* Add missing RCS markertb2023-06-251-0/+1
|
* Stop including ech_local.htb2023-06-251-1/+2
|
* Make internal header file names consistenttb2022-11-261-1/+1
| | | | | | | | | | | | | | | | 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
* Replace OPENSSL_cleanse() with explicit_bzero().jsing2019-09-051-1/+1
|
* Include correct header.jsing2019-09-051-1/+1
|
* style(9) and whitespace.jsing2019-09-051-65/+72
|
* Restore per-file license/copyright removed in OpenSSL commit 4f22f40507f.jsing2019-09-051-5/+48
|
* Remove ECDH_KDF_X9_62 wrapper.jsing2019-09-051-12/+0
|
* Provide ECDH KDF for X9.63 as needed for CMS ECC.jsing2019-09-051-0/+81
From OpenSSL 1.1.1b. ok tb@ inoguchi@