summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPeiwei Hu <jlu.hpw@foxmail.com>2022-11-15 11:25:38 +0800
committerTomas Mraz <tomas@openssl.org>2022-11-16 16:44:57 +0100
commite29ea41f6d58165f144a8614204b2c2ee3ee5f98 (patch)
tree3afce10889bc114cc599b73ea853e7b0f9027809 /apps
parenteb153d04294238839b12283922742ce0f9af1d8c (diff)
apps/speed.c: fix the wrong checks
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19678) (cherry picked from commit 9dd009dd513276e602b6592bc337a8563a1a82a1)
Diffstat (limited to 'apps')
-rw-r--r--apps/speed.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/speed.c b/apps/speed.c
index d1a0ddf6e9..c8b861f45f 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -2624,11 +2624,11 @@ skip_hmac:
* code, for maximum performance.
*/
if ((test_ctx = EVP_PKEY_CTX_new(key_B, NULL)) == NULL /* test ctx from skeyB */
- || !EVP_PKEY_derive_init(test_ctx) /* init derivation test_ctx */
- || !EVP_PKEY_derive_set_peer(test_ctx, key_A) /* set peer pubkey in test_ctx */
- || !EVP_PKEY_derive(test_ctx, NULL, &test_outlen) /* determine max length */
- || !EVP_PKEY_derive(ctx, loopargs[i].secret_a, &outlen) /* compute a*B */
- || !EVP_PKEY_derive(test_ctx, loopargs[i].secret_b, &test_outlen) /* compute b*A */
+ || EVP_PKEY_derive_init(test_ctx) <= 0 /* init derivation test_ctx */
+ || EVP_PKEY_derive_set_peer(test_ctx, key_A) <= 0 /* set peer pubkey in test_ctx */
+ || EVP_PKEY_derive(test_ctx, NULL, &test_outlen) <= 0 /* determine max length */
+ || EVP_PKEY_derive(ctx, loopargs[i].secret_a, &outlen) <= 0 /* compute a*B */
+ || EVP_PKEY_derive(test_ctx, loopargs[i].secret_b, &test_outlen) <= 0 /* compute b*A */
|| test_outlen != outlen /* compare output length */) {
ecdh_checks = 0;
BIO_printf(bio_err, "ECDH computation failure.\n");
@@ -3059,10 +3059,10 @@ skip_hmac:
ffdh_checks = 0;
break;
}
- if (!EVP_PKEY_derive_init(test_ctx) ||
- !EVP_PKEY_derive_set_peer(test_ctx, pkey_A) ||
- !EVP_PKEY_derive(test_ctx, NULL, &test_out) ||
- !EVP_PKEY_derive(test_ctx, loopargs[i].secret_ff_b, &test_out) ||
+ if (EVP_PKEY_derive_init(test_ctx) <= 0 ||
+ EVP_PKEY_derive_set_peer(test_ctx, pkey_A) <= 0 ||
+ EVP_PKEY_derive(test_ctx, NULL, &test_out) <= 0 ||
+ EVP_PKEY_derive(test_ctx, loopargs[i].secret_ff_b, &test_out) <= 0 ||
test_out != secret_size) {
BIO_printf(bio_err, "FFDH computation failure.\n");
op_count = 1;