diff options
author | tb <> | 2023-07-24 17:08:53 +0000 |
---|---|---|
committer | tb <> | 2023-07-24 17:08:53 +0000 |
commit | c2fc234286c75d942a62891333f85e824d615444 (patch) | |
tree | 7ef949af6dc29489e88241903a74fe50c6f195c1 /src/lib/libcrypto/ecdh/ecdh.c | |
parent | 4f6ff7284de44c23d500a00c75dbacdffeb73d57 (diff) | |
download | openbsd-c2fc234286c75d942a62891333f85e824d615444.tar.gz openbsd-c2fc234286c75d942a62891333f85e824d615444.tar.bz2 openbsd-c2fc234286c75d942a62891333f85e824d615444.zip |
Fix two EC_POINT_is_on_curve() checks
This API can fail for various reasons, in which case it returns -1, so
you need to check if (EC_POINT_is_on_curve_checks(...) <= 0).
ok miod
Diffstat (limited to 'src/lib/libcrypto/ecdh/ecdh.c')
-rw-r--r-- | src/lib/libcrypto/ecdh/ecdh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/ecdh/ecdh.c b/src/lib/libcrypto/ecdh/ecdh.c index ecb849c135..6ab4ff8382 100644 --- a/src/lib/libcrypto/ecdh/ecdh.c +++ b/src/lib/libcrypto/ecdh/ecdh.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ecdh.c,v 1.5 2023/07/12 08:54:18 tb Exp $ */ | 1 | /* $OpenBSD: ecdh.c,v 1.6 2023/07/24 17:08:53 tb Exp $ */ |
2 | /* ==================================================================== | 2 | /* ==================================================================== |
3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. | 3 | * Copyright 2002 Sun Microsystems, Inc. ALL RIGHTS RESERVED. |
4 | * | 4 | * |
@@ -176,7 +176,7 @@ ecdh_compute_key(void *out, size_t outlen, const EC_POINT *pub_key, EC_KEY *ecdh | |||
176 | if ((group = EC_KEY_get0_group(ecdh)) == NULL) | 176 | if ((group = EC_KEY_get0_group(ecdh)) == NULL) |
177 | goto err; | 177 | goto err; |
178 | 178 | ||
179 | if (!EC_POINT_is_on_curve(group, pub_key, ctx)) | 179 | if (EC_POINT_is_on_curve(group, pub_key, ctx) <= 0) |
180 | goto err; | 180 | goto err; |
181 | 181 | ||
182 | if ((point = EC_POINT_new(group)) == NULL) { | 182 | if ((point = EC_POINT_new(group)) == NULL) { |