summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2022-01-10 00:09:06 +0000
committertb <>2022-01-10 00:09:06 +0000
commite6455ffc48d2de0b70e7d5f20d35cd4e78d121e7 (patch)
tree3fb6fae249dd91de635ee7daa2cbc85de7c8e57d /src
parent527922248e66627df0b9ecef2c588946239b180e (diff)
downloadopenbsd-e6455ffc48d2de0b70e7d5f20d35cd4e78d121e7.tar.gz
openbsd-e6455ffc48d2de0b70e7d5f20d35cd4e78d121e7.tar.bz2
openbsd-e6455ffc48d2de0b70e7d5f20d35cd4e78d121e7.zip
zap trailing whitespace
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/dh/dh_ameth.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/libcrypto/dh/dh_ameth.c b/src/lib/libcrypto/dh/dh_ameth.c
index fc71bac7bb..bbb687da8b 100644
--- a/src/lib/libcrypto/dh/dh_ameth.c
+++ b/src/lib/libcrypto/dh/dh_ameth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: dh_ameth.c,v 1.20 2022/01/07 09:27:13 tb Exp $ */ 1/* $OpenBSD: dh_ameth.c,v 1.21 2022/01/10 00:09:06 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 */
@@ -10,7 +10,7 @@
10 * are met: 10 * are met:
11 * 11 *
12 * 1. Redistributions of source code must retain the above copyright 12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer. 13 * notice, this list of conditions and the following disclaimer.
14 * 14 *
15 * 2. Redistributions in binary form must reproduce the above copyright 15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in 16 * notice, this list of conditions and the following disclaimer in
@@ -95,7 +95,7 @@ dh_pub_decode(EVP_PKEY *pkey, X509_PUBKEY *pubkey)
95 goto err; 95 goto err;
96 } 96 }
97 97
98 pstr = pval; 98 pstr = pval;
99 pm = pstr->data; 99 pm = pstr->data;
100 pmlen = pstr->length; 100 pmlen = pstr->length;
101 101
@@ -180,7 +180,7 @@ err:
180 * that the AlgorithmIdentifier contains the paramaters, the private key 180 * that the AlgorithmIdentifier contains the paramaters, the private key
181 * is explcitly included and the pubkey must be recalculated. 181 * is explcitly included and the pubkey must be recalculated.
182 */ 182 */
183 183
184static int 184static int
185dh_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8) 185dh_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
186{ 186{
@@ -204,7 +204,7 @@ dh_priv_decode(EVP_PKEY *pkey, const PKCS8_PRIV_KEY_INFO *p8)
204 if (!(privkey=d2i_ASN1_INTEGER(NULL, &p, pklen))) 204 if (!(privkey=d2i_ASN1_INTEGER(NULL, &p, pklen)))
205 goto decerr; 205 goto decerr;
206 206
207 pstr = pval; 207 pstr = pval;
208 pm = pstr->data; 208 pm = pstr->data;
209 pmlen = pstr->length; 209 pmlen = pstr->length;
210 if (!(dh = d2i_DHparams(NULL, &pm, pmlen))) 210 if (!(dh = d2i_DHparams(NULL, &pm, pmlen)))