]>
Commit | Line | Data |
---|---|---|
b1ab9ed8 A |
1 | /* |
2 | * Copyright (c) 2000-2011 Apple Inc. All Rights Reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
6 | * This file contains Original Code and/or Modifications of Original Code | |
7 | * as defined in and that are subject to the Apple Public Source License | |
8 | * Version 2.0 (the 'License'). You may not use this file except in | |
9 | * compliance with the License. Please obtain a copy of the License at | |
10 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
11 | * file. | |
12 | * | |
13 | * The Original Code and all software distributed under the License are | |
14 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
15 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
16 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
17 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
18 | * Please see the License for the specific language governing rights and | |
19 | * limitations under the License. | |
20 | * | |
21 | * @APPLE_LICENSE_HEADER_END@ | |
22 | */ | |
23 | ||
24 | /* CDSA */ | |
25 | #include <Security/cssmconfig.h> | |
26 | #include <Security/cssmapple.h> | |
27 | #include <Security/certextensions.h> | |
28 | #include <Security/cssm.h> | |
29 | #include <Security/cssmaci.h> | |
30 | #include <Security/cssmapi.h> | |
31 | #include <Security/cssmcli.h> | |
32 | #include <Security/cssmcspi.h> | |
33 | #include <Security/cssmdli.h> | |
34 | #include <Security/cssmerr.h> | |
35 | #include <Security/cssmkrapi.h> | |
36 | #include <Security/cssmkrspi.h> | |
37 | #include <Security/cssmspi.h> | |
38 | #include <Security/cssmtpi.h> | |
39 | #include <Security/cssmtype.h> | |
40 | #include <Security/emmspi.h> | |
41 | #include <Security/emmtype.h> | |
42 | #include <Security/mds.h> | |
43 | #include <Security/mds_schema.h> | |
44 | #include <Security/oidsalg.h> | |
45 | #include <Security/oidsattr.h> | |
46 | #include <Security/oidsbase.h> | |
47 | #include <Security/oidscert.h> | |
48 | #include <Security/oidscrl.h> | |
49 | #include <Security/x509defs.h> | |
50 | ||
51 | /* Security */ | |
52 | #include <Security/SecBase.h> | |
53 | #include <Security/SecAccess.h> | |
54 | #include <Security/SecACL.h> | |
55 | #include <Security/SecCertificate.h> | |
56 | #include <Security/SecCertificateOIDs.h> | |
57 | #include <Security/SecIdentity.h> | |
58 | #include <Security/SecIdentitySearch.h> | |
59 | #include <Security/SecItem.h> | |
60 | #include <Security/SecKey.h> | |
61 | #include <Security/SecKeychain.h> | |
62 | #include <Security/SecKeychainItem.h> | |
63 | #include <Security/SecKeychainSearch.h> | |
64 | #include <Security/SecPolicy.h> | |
65 | #include <Security/SecPolicySearch.h> | |
66 | #include <Security/SecTrust.h> | |
67 | #include <Security/SecTrustedApplication.h> | |
68 | #include <Security/SecTrustSettings.h> | |
69 | #include <Security/SecImportExport.h> | |
427c49bc | 70 | #include <Security/SecRandom.h> |
b1ab9ed8 A |
71 | |
72 | /* Code Signing */ | |
73 | #include <Security/SecStaticCode.h> | |
74 | #include <Security/SecCode.h> | |
75 | #include <Security/SecCodeHost.h> | |
76 | #include <Security/SecRequirement.h> | |
77 | #include <Security/SecTask.h> | |
78 | ||
79 | /* Authorization */ | |
80 | #include <Security/Authorization.h> | |
81 | #include <Security/AuthorizationTags.h> | |
82 | #include <Security/AuthorizationDB.h> | |
83 | ||
84 | /* CMS */ | |
85 | #include <Security/CMSDecoder.h> | |
86 | #include <Security/CMSEncoder.h> | |
87 | ||
88 | /* Secure Transport */ | |
89 | #include <Security/CipherSuite.h> | |
90 | #include <Security/SecureTransport.h> | |
91 | ||
92 | #ifdef __BLOCKS__ | |
93 | #include <Security/SecTransform.h> | |
94 | #include <Security/SecCustomTransform.h> | |
95 | #include <Security/SecDecodeTransform.h> | |
96 | #include <Security/SecDigestTransform.h> | |
97 | #include <Security/SecEncodeTransform.h> | |
98 | #include <Security/SecEncryptTransform.h> | |
99 | #include <Security/SecSignVerifyTransform.h> | |
100 | #include <Security/SecReadTransform.h> | |
101 | #endif | |
102 |