diff options
| author | tb <> | 2024-11-01 18:34:06 +0000 |
|---|---|---|
| committer | tb <> | 2024-11-01 18:34:06 +0000 |
| commit | f9a68fe280d96dbf02f5338a1e3437222592c77b (patch) | |
| tree | 50dbf2120c2d877acc8fd462ded3fb682c9f7c17 /src/lib/libcrypto/cms/cms_kari.c | |
| parent | 3c39eac68c33a021cedf9c599a597c309d96cee4 (diff) | |
| download | openbsd-f9a68fe280d96dbf02f5338a1e3437222592c77b.tar.gz openbsd-f9a68fe280d96dbf02f5338a1e3437222592c77b.tar.bz2 openbsd-f9a68fe280d96dbf02f5338a1e3437222592c77b.zip | |
Only include cryptlib.h where it's needed
Clean up the other includes while there.
Diffstat (limited to 'src/lib/libcrypto/cms/cms_kari.c')
| -rw-r--r-- | src/lib/libcrypto/cms/cms_kari.c | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/src/lib/libcrypto/cms/cms_kari.c b/src/lib/libcrypto/cms/cms_kari.c index 242a496932..86b1ad9e83 100644 --- a/src/lib/libcrypto/cms/cms_kari.c +++ b/src/lib/libcrypto/cms/cms_kari.c | |||
| @@ -1,4 +1,4 @@ | |||
| 1 | /* $OpenBSD: cms_kari.c,v 1.16 2024/02/02 14:11:45 tb Exp $ */ | 1 | /* $OpenBSD: cms_kari.c,v 1.17 2024/11/01 18:34:06 tb Exp $ */ |
| 2 | /* | 2 | /* |
| 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL | 3 | * Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL |
| 4 | * project. | 4 | * project. |
| @@ -52,17 +52,15 @@ | |||
| 52 | * ==================================================================== | 52 | * ==================================================================== |
| 53 | */ | 53 | */ |
| 54 | 54 | ||
| 55 | #include <stdlib.h> | ||
| 55 | #include <string.h> | 56 | #include <string.h> |
| 56 | 57 | ||
| 57 | #include "cryptlib.h" | 58 | #include <openssl/asn1.h> |
| 58 | #include <openssl/asn1t.h> | ||
| 59 | #include <openssl/pem.h> | ||
| 60 | #include <openssl/x509v3.h> | ||
| 61 | #include <openssl/err.h> | ||
| 62 | #include <openssl/cms.h> | 59 | #include <openssl/cms.h> |
| 63 | #include <openssl/aes.h> | 60 | #include <openssl/err.h> |
| 61 | #include <openssl/evp.h> | ||
| 62 | |||
| 64 | #include "cms_local.h" | 63 | #include "cms_local.h" |
| 65 | #include "asn1/asn1_local.h" | ||
| 66 | 64 | ||
| 67 | /* Key Agreement Recipient Info (KARI) routines */ | 65 | /* Key Agreement Recipient Info (KARI) routines */ |
| 68 | 66 | ||
