diff options
author | tb <> | 2023-08-11 13:53:45 +0000 |
---|---|---|
committer | tb <> | 2023-08-11 13:53:45 +0000 |
commit | b0d988db635837f3218e3afae6b83c6a6091e0de (patch) | |
tree | 2aaa23d57d54278fda5b3850aaecc7c7fdfa2986 /src/lib/libcrypto/dsa | |
parent | 92ddfd07bfe6dc6da0145c4b24f90be2fedb67d7 (diff) | |
download | openbsd-b0d988db635837f3218e3afae6b83c6a6091e0de.tar.gz openbsd-b0d988db635837f3218e3afae6b83c6a6091e0de.tar.bz2 openbsd-b0d988db635837f3218e3afae6b83c6a6091e0de.zip |
Use params{,_len} in {dh,dsa}_params_{en,de}code()
Diffstat (limited to 'src/lib/libcrypto/dsa')
-rw-r--r-- | src/lib/libcrypto/dsa/dsa_ameth.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/dsa/dsa_ameth.c b/src/lib/libcrypto/dsa/dsa_ameth.c index b94c3c40be..529bab4d47 100644 --- a/src/lib/libcrypto/dsa/dsa_ameth.c +++ b/src/lib/libcrypto/dsa/dsa_ameth.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: dsa_ameth.c,v 1.49 2023/08/11 13:51:33 tb Exp $ */ | 1 | /* $OpenBSD: dsa_ameth.c,v 1.50 2023/08/11 13:53:45 tb Exp $ */ |
2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 2 | /* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
3 | * project 2006. | 3 | * project 2006. |
4 | */ | 4 | */ |
@@ -459,12 +459,12 @@ do_dsa_print(BIO *bp, const DSA *x, int off, int ptype) | |||
459 | } | 459 | } |
460 | 460 | ||
461 | static int | 461 | static int |
462 | dsa_param_decode(EVP_PKEY *pkey, const unsigned char **pder, int derlen) | 462 | dsa_param_decode(EVP_PKEY *pkey, const unsigned char **params, int params_len) |
463 | { | 463 | { |
464 | DSA *dsa = NULL; | 464 | DSA *dsa = NULL; |
465 | int ret = 0; | 465 | int ret = 0; |
466 | 466 | ||
467 | if ((dsa = d2i_DSAparams(NULL, pder, derlen)) == NULL) { | 467 | if ((dsa = d2i_DSAparams(NULL, params, params_len)) == NULL) { |
468 | DSAerror(ERR_R_DSA_LIB); | 468 | DSAerror(ERR_R_DSA_LIB); |
469 | goto err; | 469 | goto err; |
470 | } | 470 | } |
@@ -483,9 +483,9 @@ dsa_param_decode(EVP_PKEY *pkey, const unsigned char **pder, int derlen) | |||
483 | } | 483 | } |
484 | 484 | ||
485 | static int | 485 | static int |
486 | dsa_param_encode(const EVP_PKEY *pkey, unsigned char **pder) | 486 | dsa_param_encode(const EVP_PKEY *pkey, unsigned char **params) |
487 | { | 487 | { |
488 | return i2d_DSAparams(pkey->pkey.dsa, pder); | 488 | return i2d_DSAparams(pkey->pkey.dsa, params); |
489 | } | 489 | } |
490 | 490 | ||
491 | static int | 491 | static int |