History log of /openbsd-src/lib/libcrypto/rsa/rsa_meth.c (Results 1 – 7 of 7)
Revision Date Author Comments
# 1da36015 08-Jul-2023 beck <beck@openbsd.org>

Hide symbols in rsa

ok tb@


# c9675a23 26-Nov-2022 tb <tb@openbsd.org>

Make internal header file names consistent

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 *_l

Make internal header file names consistent

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

show more ...


# d77d95a1 04-Jul-2022 tb <tb@openbsd.org>

Sync with changes in dsa_meth.c

pointed out by jsing


# 05cb8c9e 07-Jan-2022 tb <tb@openbsd.org>

Prepare to make RSA and RSA_METHOD opaque by including rsa_locl.h
where it will be needed in the upcoming bump.

discussed with jsing


# bd3f6f9a 05-Jun-2019 gilles <gilles@openbsd.org>

provide getters and setters for the RSA_METHOD interface

ok tb@, jsing@, sthen@


# bd028407 12-Sep-2018 djm <djm@openbsd.org>

Add some accessor functions:

RSA_meth_get_finish() RSA_meth_set1_name() EVP_CIPHER_CTX_(get|set)_iv()

feedback and ok jsing@ tb@


# 7a0262ff 17-Mar-2018 tb <tb@openbsd.org>

Provide RSA_meth_{dup,free,new,set_{finish,priv_{dec,enc}}}()

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