summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2023-11-08 17:07:07 +0000
committertb <>2023-11-08 17:07:07 +0000
commit3ebdaeaf691707ca75be53cb3b5c0d514a8b2b31 (patch)
tree297f10be50fcd5dfbbda67b73c1438bea80e860f /src
parentbd60805e3eafd99adf211147246ea4569c739f66 (diff)
downloadopenbsd-3ebdaeaf691707ca75be53cb3b5c0d514a8b2b31.tar.gz
openbsd-3ebdaeaf691707ca75be53cb3b5c0d514a8b2b31.tar.bz2
openbsd-3ebdaeaf691707ca75be53cb3b5c0d514a8b2b31.zip
zap a stray space
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/rsa/rsa_ameth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_ameth.c b/src/lib/libcrypto/rsa/rsa_ameth.c
index ff673d5bd6..0558144dc7 100644
--- a/src/lib/libcrypto/rsa/rsa_ameth.c
+++ b/src/lib/libcrypto/rsa/rsa_ameth.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_ameth.c,v 1.46 2023/11/08 16:42:18 tb Exp $ */ 1/* $OpenBSD: rsa_ameth.c,v 1.47 2023/11/08 17:07:07 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 */
@@ -953,7 +953,7 @@ rsa_alg_set_oaep_padding(X509_ALGOR *alg, EVP_PKEY_CTX *pkey_ctx)
953 } 953 }
954 /* create string with pss parameter encoding. */ 954 /* create string with pss parameter encoding. */
955 if ((astr = ASN1_item_pack(oaep, &RSA_OAEP_PARAMS_it, NULL)) == NULL) 955 if ((astr = ASN1_item_pack(oaep, &RSA_OAEP_PARAMS_it, NULL)) == NULL)
956 goto err; 956 goto err;
957 X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaesOaep), V_ASN1_SEQUENCE, astr); 957 X509_ALGOR_set0(alg, OBJ_nid2obj(NID_rsaesOaep), V_ASN1_SEQUENCE, astr);
958 astr = NULL; 958 astr = NULL;
959 959