]> git.saurik.com Git - apple/security.git/blob - keychain/SecureObjectSync/SOSTrustedDeviceAttributes.h
Security-59754.41.1.tar.gz
[apple/security.git] / keychain / SecureObjectSync / SOSTrustedDeviceAttributes.h
1 //
2 // SOSTrustedDeviceAttributes.h
3 // Security
4 //
5
6 #ifndef SOSTrustedDeviceAttributes_h
7 #define SOSTrustedDeviceAttributes_h
8
9 #import <Foundation/Foundation.h>
10 #define MACHINEID @"machineID"
11 #define SERIALNUMBER @"serialNumber"
12
13 NS_ASSUME_NONNULL_BEGIN
14
15 #if __OBJC2__
16
17 @interface SOSTrustedDeviceAttributes : NSObject <NSSecureCoding>
18
19 @property NSString *machineID;
20 @property NSString *serialNumber;
21
22 @end
23 #endif /* __OBJC2__ */
24
25 NS_ASSUME_NONNULL_END
26
27 #endif /* SOSTrustedDeviceAttributes_h */