diff options
author | tb <> | 2023-11-08 17:07:07 +0000 |
---|---|---|
committer | tb <> | 2023-11-08 17:07:07 +0000 |
commit | da0e631ad5eb2a6fe875fba982ad3395843b0378 (patch) | |
tree | 297f10be50fcd5dfbbda67b73c1438bea80e860f /src/lib | |
parent | ea711fa143a2d322ef6c1d0dd073162240a8935a (diff) | |
download | openbsd-da0e631ad5eb2a6fe875fba982ad3395843b0378.tar.gz openbsd-da0e631ad5eb2a6fe875fba982ad3395843b0378.tar.bz2 openbsd-da0e631ad5eb2a6fe875fba982ad3395843b0378.zip |
zap a stray space
Diffstat (limited to 'src/lib')
-rw-r--r-- | src/lib/libcrypto/rsa/rsa_ameth.c | 4 |
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 | ||