mirror of
https://github.com/darlinghq/darling-security.git
synced 2024-11-27 14:00:22 +00:00
bf1385e233
This is only the *build* of the Security framework. It does not link yet, and I also have not tried building the various executables yet. This one required lots of edits in various places throughout the Darling codebase. It seems Apple has really changed things up from 10.13 to 10.15. A great example of the huge difference is that libDER is no longer included with Security! I had to import it from the last version it was released and modify it slightly to fit the updated code. Yet another example of Apple being bipolar towards open-source. I wonder what kind of secrets they could be hiding in a library made for working with an *open standard*, smh. Also, since 10.15 included the drop of 32-bit support, Apple has now made use of many more "modern" Objective-C runtime features, such as automatic ivar synthesis. Since we want to keep 32-bit app support in Darling but also support newer 64-bit apps and frameworks, I've put the sources using the new features into x86_64-only object libraries. That way, we only build them for 64-bit and they're available in the 64-bit part of the final "fat" framework. This is fine because those brand new sources aren't used by any old 32-bit code (and 32-bit code can't be updated to use it, either). Also, I'd like to point out that Apple's code uses such a mess of includes that it's ridiculous (and this is for all their projects, not just Security). Some sources require more includes than the ones listed in Xcode.
126 lines
3.6 KiB
C
126 lines
3.6 KiB
C
/*
|
|
* Copyright (c) 2000-2011,2012,2013-2014,2016 Apple Inc. All Rights Reserved.
|
|
*
|
|
* @APPLE_LICENSE_HEADER_START@
|
|
*
|
|
* This file contains Original Code and/or Modifications of Original Code
|
|
* as defined in and that are subject to the Apple Public Source License
|
|
* Version 2.0 (the 'License'). You may not use this file except in
|
|
* compliance with the License. Please obtain a copy of the License at
|
|
* http://www.opensource.apple.com/apsl/ and read it before using this
|
|
* file.
|
|
*
|
|
* The Original Code and all software distributed under the License are
|
|
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
|
|
* EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
|
|
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
|
|
* Please see the License for the specific language governing rights and
|
|
* limitations under the License.
|
|
*
|
|
* @APPLE_LICENSE_HEADER_END@
|
|
*/
|
|
|
|
#ifndef _SECURITY_H_
|
|
#define _SECURITY_H_
|
|
|
|
#include <Security/SecBase.h>
|
|
#include <Security/SecCertificate.h>
|
|
#include <Security/SecIdentity.h>
|
|
#include <Security/SecAccessControl.h>
|
|
#include <Security/SecItem.h>
|
|
#include <Security/SecKey.h>
|
|
#include <Security/SecPolicy.h>
|
|
#include <Security/SecRandom.h>
|
|
#include <Security/SecImportExport.h>
|
|
#include <Security/SecTrust.h>
|
|
#include <Security/SecSharedCredential.h>
|
|
#include <Security/SecProtocolOptions.h>
|
|
#include <Security/SecProtocolMetadata.h>
|
|
|
|
#if SEC_OS_OSX_INCLUDES
|
|
#include <Security/AuthSession.h>
|
|
#endif
|
|
|
|
#if SEC_OS_OSX_INCLUDES
|
|
/* CDSA */
|
|
#include <Security/cssmconfig.h>
|
|
#include <Security/cssmapple.h>
|
|
#include <Security/certextensions.h>
|
|
#include <Security/cssm.h>
|
|
#include <Security/cssmaci.h>
|
|
#include <Security/cssmapi.h>
|
|
#include <Security/cssmcli.h>
|
|
#include <Security/cssmcspi.h>
|
|
#include <Security/cssmdli.h>
|
|
#include <Security/cssmerr.h>
|
|
#include <Security/cssmkrapi.h>
|
|
#include <Security/cssmkrspi.h>
|
|
#include <Security/cssmspi.h>
|
|
#include <Security/cssmtpi.h>
|
|
#include <Security/cssmtype.h>
|
|
#include <Security/emmspi.h>
|
|
#include <Security/emmtype.h>
|
|
#include <Security/mds.h>
|
|
#include <Security/mds_schema.h>
|
|
#include <Security/oidsalg.h>
|
|
#include <Security/oidsattr.h>
|
|
#include <Security/oidsbase.h>
|
|
#include <Security/oidscert.h>
|
|
#include <Security/oidscrl.h>
|
|
#include <Security/x509defs.h>
|
|
|
|
/* Security */
|
|
#include <Security/SecAccess.h>
|
|
#include <Security/SecACL.h>
|
|
#include <Security/SecCertificateOIDs.h>
|
|
#include <Security/SecIdentitySearch.h>
|
|
#include <Security/SecKeychain.h>
|
|
#include <Security/SecKeychainItem.h>
|
|
#include <Security/SecKeychainSearch.h>
|
|
#include <Security/SecPolicySearch.h>
|
|
#include <Security/SecTrustedApplication.h>
|
|
#include <Security/SecTrustSettings.h>
|
|
|
|
/* Code Signing */
|
|
#include <Security/SecStaticCode.h>
|
|
#include <Security/SecCode.h>
|
|
#include <Security/SecCodeHost.h>
|
|
#include <Security/SecRequirement.h>
|
|
#include <Security/SecTask.h>
|
|
|
|
/* Authorization */
|
|
#include <Security/Authorization.h>
|
|
#include <Security/AuthorizationTags.h>
|
|
#include <Security/AuthorizationDB.h>
|
|
|
|
/* CMS */
|
|
#include <Security/CMSDecoder.h>
|
|
#include <Security/CMSEncoder.h>
|
|
|
|
/* Secure Transport */
|
|
#include <Security/CipherSuite.h>
|
|
#include <Security/SecureTransport.h>
|
|
|
|
#ifdef __BLOCKS__
|
|
#include <Security/SecTransform.h>
|
|
#include <Security/SecCustomTransform.h>
|
|
#include <Security/SecDecodeTransform.h>
|
|
#include <Security/SecDigestTransform.h>
|
|
#include <Security/SecEncodeTransform.h>
|
|
#include <Security/SecEncryptTransform.h>
|
|
#include <Security/SecSignVerifyTransform.h>
|
|
#include <Security/SecReadTransform.h>
|
|
#endif
|
|
|
|
/* DER */
|
|
#ifdef DARLING
|
|
#include <libDER/oids.h>
|
|
#else
|
|
#include <Security/oids.h>
|
|
#endif
|
|
|
|
#endif // SEC_OS_OSX
|
|
|
|
#endif // _SECURITY_H_
|