summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl_rsa.c
diff options
context:
space:
mode:
authorjsing <>2021-05-16 14:10:43 +0000
committerjsing <>2021-05-16 14:10:43 +0000
commitf90f5cc9a7987768e1cd09f4fc110caf5512afff (patch)
tree8bdf19b574c605a50b142d3dbfbfb0ab0d7c8530 /src/lib/libssl/ssl_rsa.c
parent6eb9f4e8d442a1181957027a462b0fd7230baeba (diff)
downloadopenbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.gz
openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.tar.bz2
openbsd-f90f5cc9a7987768e1cd09f4fc110caf5512afff.zip
Make local header inclusion consistent.
Consistently include local headers in the same location, using the same grouping/sorting across all files.
Diffstat (limited to 'src/lib/libssl/ssl_rsa.c')
-rw-r--r--src/lib/libssl/ssl_rsa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libssl/ssl_rsa.c b/src/lib/libssl/ssl_rsa.c
index 18ae5307d3..bada2482f8 100644
--- a/src/lib/libssl/ssl_rsa.c
+++ b/src/lib/libssl/ssl_rsa.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssl_rsa.c,v 1.32 2021/03/19 19:51:07 tb Exp $ */ 1/* $OpenBSD: ssl_rsa.c,v 1.33 2021/05/16 14:10:43 jsing Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -58,14 +58,14 @@
58 58
59#include <stdio.h> 59#include <stdio.h>
60 60
61#include "ssl_locl.h"
62
63#include <openssl/bio.h> 61#include <openssl/bio.h>
64#include <openssl/evp.h> 62#include <openssl/evp.h>
65#include <openssl/objects.h> 63#include <openssl/objects.h>
66#include <openssl/pem.h> 64#include <openssl/pem.h>
67#include <openssl/x509.h> 65#include <openssl/x509.h>
68 66
67#include "ssl_locl.h"
68
69static int ssl_set_cert(CERT *c, X509 *x509); 69static int ssl_set_cert(CERT *c, X509 *x509);
70static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey); 70static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey);
71static int use_certificate_chain_bio(BIO *in, CERT *cert, 71static int use_certificate_chain_bio(BIO *in, CERT *cert,