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