]> git.saurik.com Git - apple/security.git/blob - OSX/sec/SOSCircle/SecureObjectSync/SOSPeerInfoV2.h
Security-58286.270.3.0.1.tar.gz
[apple/security.git] / OSX / sec / SOSCircle / SecureObjectSync / SOSPeerInfoV2.h
1 //
2 // SOSPeerInfoV2.h
3 // sec
4 //
5 // Created by Richard Murphy on 1/26/15.
6 //
7 //
8
9 #ifndef _sec_SOSPeerInfoV2_
10 #define _sec_SOSPeerInfoV2_
11
12 #include <CoreFoundation/CFRuntime.h>
13 #include <CoreFoundation/CoreFoundation.h>
14 #include <Security/SecureObjectSync/SOSPeerInfo.h>
15 #include <Security/SecureObjectSync/SOSViews.h>
16
17 // Description Dictionary Entries Added for V2
18 extern CFStringRef sV2DictionaryKey; // CFData wrapper for V2 extensions
19 extern CFStringRef sViewsKey; // Set of Views
20 extern CFStringRef sSerialNumberKey; // Device Serial Number
21 extern CFStringRef sMachineIDKey; // Account MID
22 extern CFStringRef kSOSHsaCrKeyDictionary; // HSA Challenge-Response area
23 extern CFStringRef sPreferIDS; // Whether or not a peer requires to speak over IDS or KVS
24 extern CFStringRef sPreferIDSFragmentation; // Whether or not a peer requires to speak over fragmented IDS or not
25 extern CFStringRef sPreferIDSACKModel; //If a peer prefers to use the ACK model and not ping
26
27 extern CFStringRef sTransportType; // Dictates the transport type
28 extern CFStringRef sDeviceID; // The IDS device id
29 extern CFStringRef sRingState; // Dictionary of Ring Membership States
30 extern CFStringRef sBackupKeyKey;
31 extern CFStringRef sEscrowRecord;
32
33 bool SOSPeerInfoUpdateToV2(SOSPeerInfoRef pi, CFErrorRef *error);
34 void SOSPeerInfoPackV2Data(SOSPeerInfoRef peer);
35 bool SOSPeerInfoExpandV2Data(SOSPeerInfoRef pi, CFErrorRef *error);
36 void SOSPeerInfoV2DictionarySetValue(SOSPeerInfoRef peer, const void *key, const void *value);
37 void SOSPeerInfoV2DictionaryRemoveValue(SOSPeerInfoRef peer, const void *key);
38
39 CFMutableDataRef SOSPeerInfoV2DictionaryCopyData(SOSPeerInfoRef pi, const void *key);
40 CFMutableSetRef SOSPeerInfoV2DictionaryCopySet(SOSPeerInfoRef pi, const void *key);
41 CFMutableStringRef SOSPeerInfoV2DictionaryCopyString(SOSPeerInfoRef pi, const void *key);
42 CFBooleanRef SOSPeerInfoV2DictionaryCopyBoolean(SOSPeerInfoRef pi, const void *key);
43 CFMutableDictionaryRef SOSPeerInfoV2DictionaryCopyDictionary(SOSPeerInfoRef pi, const void *key);
44 SOSPeerInfoRef SOSPeerInfoCopyWithV2DictionaryUpdate(CFAllocatorRef allocator, SOSPeerInfoRef toCopy, CFDictionaryRef newv2dict, SecKeyRef signingKey, CFErrorRef* error);
45
46 bool SOSPeerInfoV2DictionaryHasSet(SOSPeerInfoRef pi, const void *key);
47 bool SOSPeerInfoV2DictionaryHasData(SOSPeerInfoRef pi, const void *key);
48 bool SOSPeerInfoV2DictionaryHasString(SOSPeerInfoRef pi, const void *key);
49 bool SOSPeerInfoV2DictionaryHasBoolean(SOSPeerInfoRef pi, const void *key);
50
51 bool SOSPeerInfoV2DictionaryHasStringValue(SOSPeerInfoRef pi, const void *key, CFStringRef value);
52
53 bool SOSPeerInfoV2DictionaryHasSetContaining(SOSPeerInfoRef pi, const void *key, const void* value);
54 void SOSPeerInfoV2DictionaryForEachSetValue(SOSPeerInfoRef pi, const void *key, void (^action)(const void* value));
55 void SOSPeerInfoV2DictionaryWithSet(SOSPeerInfoRef pi, const void *key, void(^operation)(CFSetRef set));
56
57
58 bool SOSPeerInfoSerialNumberIsSet(SOSPeerInfoRef pi);
59 void SOSPeerInfoSetSerialNumber(SOSPeerInfoRef pi);
60 void SOSPeerInfoSetTestSerialNumber(SOSPeerInfoRef pi, CFStringRef serialNumber);
61
62 #endif /* defined(_sec_SOSPeerInfoV2_) */