]> git.saurik.com Git - apple/security.git/blob - keychain/securityd/SecDbKeychainV7-protobufs/generated_source/SecDbKeychainSerializedSecretData.h
Security-59306.41.2.tar.gz
[apple/security.git] / keychain / securityd / SecDbKeychainV7-protobufs / generated_source / SecDbKeychainSerializedSecretData.h
1 // This file was automatically generated by protocompiler
2 // DO NOT EDIT!
3 // Compiled from SecDbKeychainSerializedSecretData.proto
4
5 #import <Foundation/Foundation.h>
6 #import <ProtocolBuffer/PBCodable.h>
7
8 #ifdef __cplusplus
9 #define SECDBKEYCHAINSERIALIZEDSECRETDATA_FUNCTION extern "C"
10 #else
11 #define SECDBKEYCHAINSERIALIZEDSECRETDATA_FUNCTION extern
12 #endif
13
14 @interface SecDbKeychainSerializedSecretData : PBCodable <NSCopying>
15 {
16 NSData *_ciphertext;
17 NSData *_secDbBackupWrappedItemKey;
18 NSString *_tamperCheck;
19 NSData *_wrappedKey;
20 }
21
22
23 @property (nonatomic, retain) NSData *ciphertext;
24
25 @property (nonatomic, retain) NSData *wrappedKey;
26
27 @property (nonatomic, retain) NSString *tamperCheck;
28
29 @property (nonatomic, readonly) BOOL hasSecDbBackupWrappedItemKey;
30 @property (nonatomic, retain) NSData *secDbBackupWrappedItemKey;
31
32 // Performs a shallow copy into other
33 - (void)copyTo:(SecDbKeychainSerializedSecretData *)other;
34
35 // Performs a deep merge from other into self
36 // If set in other, singular values in self are replaced in self
37 // Singular composite values are recursively merged
38 // Repeated values from other are appended to repeated values in self
39 - (void)mergeFrom:(SecDbKeychainSerializedSecretData *)other;
40
41 SECDBKEYCHAINSERIALIZEDSECRETDATA_FUNCTION BOOL SecDbKeychainSerializedSecretDataReadFrom(__unsafe_unretained SecDbKeychainSerializedSecretData *self, __unsafe_unretained PBDataReader *reader);
42
43 @end
44