diff options
| author | tb <> | 2023-07-02 04:17:00 +0000 |
|---|---|---|
| committer | tb <> | 2023-07-02 04:17:00 +0000 |
| commit | b19abb3cde834d2cceba4bba1da858c2c4897b5e (patch) | |
| tree | 21792167d1c20274339eb5d5b8ae739237947886 /src | |
| parent | 3456f0311e32b56262938ba7f5d1b6f51b457dfd (diff) | |
| download | openbsd-b19abb3cde834d2cceba4bba1da858c2c4897b5e.tar.gz openbsd-b19abb3cde834d2cceba4bba1da858c2c4897b5e.tar.bz2 openbsd-b19abb3cde834d2cceba4bba1da858c2c4897b5e.zip | |
ECDSA_size(): move order a few lines down
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib/libcrypto/ecdsa/ecs_ossl.c | 4 |
1 files changed, 2 insertions, 2 deletions
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 @@ | |||
| 1 | /* $OpenBSD: ecs_ossl.c,v 1.38 2023/07/02 03:20:44 tb Exp $ */ | 1 | /* $OpenBSD: ecs_ossl.c,v 1.39 2023/07/02 04:17:00 tb Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Written by Nils Larsch for the OpenSSL project | 3 | * Written by Nils Larsch for the OpenSSL project |
| 4 | */ | 4 | */ |
| @@ -588,8 +588,8 @@ ECDSA_verify(int type, const unsigned char *dgst, int dgst_len, | |||
| 588 | int | 588 | int |
| 589 | ECDSA_size(const EC_KEY *r) | 589 | ECDSA_size(const EC_KEY *r) |
| 590 | { | 590 | { |
| 591 | BIGNUM *order = NULL; | ||
| 592 | const EC_GROUP *group; | 591 | const EC_GROUP *group; |
| 592 | BIGNUM *order = NULL; | ||
| 593 | ECDSA_SIG signature; | 593 | ECDSA_SIG signature; |
| 594 | int ret = 0; | 594 | int ret = 0; |
| 595 | 595 | ||
