]> git.saurik.com Git - apple/security.git/blobdiff - keychain/SecureObjectSync/SOSTrustedDeviceAttributes.h
Security-59306.11.20.tar.gz
[apple/security.git] / keychain / SecureObjectSync / SOSTrustedDeviceAttributes.h
diff --git a/keychain/SecureObjectSync/SOSTrustedDeviceAttributes.h b/keychain/SecureObjectSync/SOSTrustedDeviceAttributes.h
new file mode 100644 (file)
index 0000000..796b570
--- /dev/null
@@ -0,0 +1,27 @@
+//
+//  SOSTrustedDeviceAttributes.h
+//  Security
+//
+
+#ifndef SOSTrustedDeviceAttributes_h
+#define SOSTrustedDeviceAttributes_h
+
+#import <Foundation/Foundation.h>
+#define MACHINEID @"machineID"
+#define SERIALNUMBER @"serialNumber"
+
+NS_ASSUME_NONNULL_BEGIN
+
+#if __OBJC2__
+
+@interface SOSTrustedDeviceAttributes : NSObject <NSSecureCoding>
+
+@property NSString *machineID;
+@property NSString *serialNumber;
+
+@end
+#endif /* __OBJC2__ */
+
+NS_ASSUME_NONNULL_END
+
+#endif /* SOSTrustedDeviceAttributes_h */