summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortb <>2018-08-19 20:17:20 +0000
committertb <>2018-08-19 20:17:20 +0000
commit1ac309e9818bd0d0d2295e3a06ee0b822a0b208c (patch)
treec53fdf2cbb938f872ad6a954fd0a96b85cc130c5 /src
parentf4727c912d72e95a2522207dc2024bb85796a201 (diff)
downloadopenbsd-1ac309e9818bd0d0d2295e3a06ee0b822a0b208c.tar.gz
openbsd-1ac309e9818bd0d0d2295e3a06ee0b822a0b208c.tar.bz2
openbsd-1ac309e9818bd0d0d2295e3a06ee0b822a0b208c.zip
whitespace fix
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/rsa/rsa_oaep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/rsa/rsa_oaep.c b/src/lib/libcrypto/rsa/rsa_oaep.c
index 555205813a..c463a885d2 100644
--- a/src/lib/libcrypto/rsa/rsa_oaep.c
+++ b/src/lib/libcrypto/rsa/rsa_oaep.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: rsa_oaep.c,v 1.28 2018/08/19 20:15:30 tb Exp $ */ 1/* $OpenBSD: rsa_oaep.c,v 1.29 2018/08/19 20:17:20 tb Exp $ */
2/* Written by Ulf Moeller. This software is distributed on an "AS IS" 2/* Written by Ulf Moeller. This software is distributed on an "AS IS"
3 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. */ 3 basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. */
4 4
@@ -223,7 +223,7 @@ PKCS1_MGF1(unsigned char *mask, long len, const unsigned char *seed,
223 } 223 }
224 } 224 }
225 rv = 0; 225 rv = 0;
226err: 226 err:
227 EVP_MD_CTX_cleanup(&c); 227 EVP_MD_CTX_cleanup(&c);
228 return rv; 228 return rv;
229} 229}