artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2580993
)
ECDSA_size(): move order a few lines down
author
tb
<tb@openbsd.org>
Sun, 2 Jul 2023 04:17:00 +0000
(
04:17
+0000)
committer
tb
<tb@openbsd.org>
Sun, 2 Jul 2023 04:17:00 +0000
(
04:17
+0000)
lib/libcrypto/ecdsa/ecs_ossl.c
patch
|
blob
|
history
diff --git
a/lib/libcrypto/ecdsa/ecs_ossl.c
b/lib/libcrypto/ecdsa/ecs_ossl.c
index
8614bf1
..
7c65fa7
100644
(file)
--- a/
lib/libcrypto/ecdsa/ecs_ossl.c
+++ b/
lib/libcrypto/ecdsa/ecs_ossl.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: ecs_ossl.c,v 1.3
8 2023/07/02 03:20:44
tb Exp $ */
+/* $OpenBSD: ecs_ossl.c,v 1.3
9 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;