]> git.saurik.com Git - apple/security.git/blob - OSX/utilities/src/iOSforOSX-SecAttr.c
Security-57740.1.18.tar.gz
[apple/security.git] / OSX / utilities / src / iOSforOSX-SecAttr.c
1 /*
2 * Copyright (c) 2012-2014 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
25 #include <TargetConditionals.h>
26
27 #if (TARGET_OS_MAC && !(TARGET_OS_EMBEDDED || TARGET_OS_IPHONE))
28 #include <CoreFoundation/CoreFoundation.h>
29
30 #include <sys/types.h>
31 #include <pwd.h>
32 #include <uuid/uuid.h>
33 #include "iOSforOSX.h"
34 #include <pwd.h>
35 #include <unistd.h>
36
37 // Was in SOSAccount.c
38 #define SEC_CONST_DECL(k,v) const CFStringRef k = CFSTR(v);
39 // We may not have all of these we need
40 SEC_CONST_DECL (kSecAttrAccessible, "pdmn");
41 SEC_CONST_DECL (kSecAttrAccessibleAlwaysThisDeviceOnly, "dku");
42 SEC_CONST_DECL (kSecAttrAccessibleAlwaysThisDeviceOnlyPrivate, "dku");
43 SEC_CONST_DECL (kSecAttrAccessControl, "accc");
44 SEC_CONST_DECL (kSecAttrTokenID, "tkid");
45 SEC_CONST_DECL (kSecAttrAccessGroupToken, "com.apple.token");
46 SEC_CONST_DECL (kSecUseCredentialReference, "u_CredRef");
47 SEC_CONST_DECL (kSecUseOperationPrompt, "u_OpPrompt");
48 SEC_CONST_DECL (kSecUseNoAuthenticationUI, "u_NoAuthUI");
49 SEC_CONST_DECL (kSecUseAuthenticationUI, "u_AuthUI");
50 SEC_CONST_DECL (kSecUseAuthenticationUIAllow, "u_AuthUIA");
51 SEC_CONST_DECL (kSecUseAuthenticationUIFail, "u_AuthUIF");
52 SEC_CONST_DECL (kSecUseAuthenticationUISkip, "u_AuthUIS");
53 SEC_CONST_DECL (kSecUseAuthenticationContext, "u_AuthCtx");
54 SEC_CONST_DECL (kSecUseToken, "u_Token");
55 SEC_CONST_DECL (kSecUseTokenObjectID, "u_TokenOID");
56 SEC_CONST_DECL (kSecUseCallerName, "u_CallerName");
57
58 #endif