From 0ded9dcf305231c596837cf0e9a372d5fc79b18b Mon Sep 17 00:00:00 2001 From: tb <> Date: Sun, 2 Jul 2023 04:17:00 +0000 Subject: ECDSA_size(): move order a few lines down --- src/lib/libcrypto/ecdsa/ecs_ossl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/lib/libcrypto/ecdsa/ecs_ossl.c') diff --git a/src/lib/libcrypto/ecdsa/ecs_ossl.c b/src/lib/libcrypto/ecdsa/ecs_ossl.c index 8614bf1968..7c65fa79eb 100644 --- a/src/lib/libcrypto/ecdsa/ecs_ossl.c +++ b/src/lib/libcrypto/ecdsa/ecs_ossl.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ecs_ossl.c,v 1.38 2023/07/02 03:20:44 tb Exp $ */ +/* $OpenBSD: ecs_ossl.c,v 1.39 2023/07/02 04:17:00 tb Exp $ */ /* * Written by Nils Larsch for the OpenSSL project */ @@ -588,8 +588,8 @@ ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, int ECDSA_size(const EC_KEY *r) { - BIGNUM *order = NULL; const EC_GROUP *group; + BIGNUM *order = NULL; ECDSA_SIG signature; int ret = 0; -- cgit v1.2.3-55-g6feb