Branch: refs/heads/master Home: https://github.com/openssl/openssl Commit: b96e10b9f9bfaba3c373d3d5716fe0408eb0aa8c https://github.com/openssl/openssl/commit/b96e10b9f9bfaba3c373d3d5716fe0408eb0aa8c Author: Richard Levitte <levi...@openssl.org> Date: 2024-07-21 (Sun, 21 Jul 2024)
Changed paths: M include/crypto/evp.h M include/openssl/evp.h Log Message: ----------- fix: refactor the EVP_PKEY_OP checks On the one hand, we have public macros that are collections of EVP_PKEY_OP bits, like EVP_PKEY_OP_TYPE_SIG, obviously meant to be used like this: if ((ctx->operation & EVP_PKEY_OP_TYPE_SIG) == 0) ... On the other hand, we also have internal test macros, like EVP_PKEY_CTX_IS_SIGNATURE_OP(), obviously meant to be used like this: if (EVP_PKEY_CTX_IS_SIGNATURE_OP(ctx)) ... Unfortunately, these two sets of macros were completely separate, forcing developers to keep them both sync, manually. This refactor makes the internal macros use the corresponding public macros, and adds the missing public macros, for consistency. Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Matt Caswell <m...@openssl.org> Reviewed-by: Shane Lontis <shane.lon...@oracle.com> Reviewed-by: Todd Short <todd.sh...@me.com> (Merged from https://github.com/openssl/openssl/pull/24854) Commit: 787e1dd941b695c957df2e2d587730a6de3df9ab https://github.com/openssl/openssl/commit/787e1dd941b695c957df2e2d587730a6de3df9ab Author: Richard Levitte <levi...@openssl.org> Date: 2024-07-21 (Sun, 21 Jul 2024) Changed paths: M include/crypto/evp.h M include/openssl/evp.h Log Message: ----------- fix: style nits Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Matt Caswell <m...@openssl.org> Reviewed-by: Shane Lontis <shane.lon...@oracle.com> Reviewed-by: Todd Short <todd.sh...@me.com> (Merged from https://github.com/openssl/openssl/pull/24854) Compare: https://github.com/openssl/openssl/compare/a98870414773...787e1dd941b6 To unsubscribe from these emails, change your notification settings at https://github.com/openssl/openssl/settings/notifications