summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2021-12-03 17:23:16 +0000
committerjsing <>2021-12-03 17:23:16 +0000
commit4f7d2d50bd695e29a0268642de614b97bc3538ce (patch)
tree986eecd7a0cdb0b781f4a31d4fd68b98d0840601 /src
parent909b77020d8852e0dd17d6969cfd444bca07bc0a (diff)
downloadopenbsd-4f7d2d50bd695e29a0268642de614b97bc3538ce.tar.gz
openbsd-4f7d2d50bd695e29a0268642de614b97bc3538ce.tar.bz2
openbsd-4f7d2d50bd695e29a0268642de614b97bc3538ce.zip
Group and sort includes.
Diffstat (limited to 'src')
-rw-r--r--src/lib/libcrypto/asn1/tasn_dec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/asn1/tasn_dec.c b/src/lib/libcrypto/asn1/tasn_dec.c
index beeff8089a..ab3ff8c3bc 100644
--- a/src/lib/libcrypto/asn1/tasn_dec.c
+++ b/src/lib/libcrypto/asn1/tasn_dec.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tasn_dec.c,v 1.39 2021/12/03 17:22:10 jsing Exp $ */ 1/* $OpenBSD: tasn_dec.c,v 1.40 2021/12/03 17:23:16 jsing 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 2000. 3 * project 2000.
4 */ 4 */
@@ -56,14 +56,14 @@
56 * 56 *
57 */ 57 */
58 58
59
60#include <stddef.h> 59#include <stddef.h>
61#include <string.h> 60#include <string.h>
61
62#include <openssl/asn1.h> 62#include <openssl/asn1.h>
63#include <openssl/asn1t.h> 63#include <openssl/asn1t.h>
64#include <openssl/objects.h>
65#include <openssl/buffer.h> 64#include <openssl/buffer.h>
66#include <openssl/err.h> 65#include <openssl/err.h>
66#include <openssl/objects.h>
67 67
68/* Constructed types with a recursive definition (such as can be found in PKCS7) 68/* Constructed types with a recursive definition (such as can be found in PKCS7)
69 * could eventually exceed the stack given malicious input with excessive 69 * could eventually exceed the stack given malicious input with excessive