]> git.saurik.com Git - apple/security.git/blob - keychain/securityd/SecDbKeychainV7-protobufs/SecDbKeychainSerializedItemV7.proto
Security-59306.41.2.tar.gz
[apple/security.git] / keychain / securityd / SecDbKeychainV7-protobufs / SecDbKeychainSerializedItemV7.proto
1 syntax = "proto2";
2
3 message SecDbKeychainSerializedItemV7 {
4 required bytes encryptedSecretData = 1;
5 required bytes encryptedMetadata = 2;
6
7 enum Keyclass {
8 KEYCLASS_AK = 6;
9 KEYCLASS_CK = 7;
10 KEYCLASS_DK = 8;
11 KEYCLASS_AKU = 9;
12 KEYCLASS_CKU = 10;
13 KEYCLASS_DKU = 11;
14 KEYCLASS_AKPU = 12;
15 }
16 required Keyclass keyclass = 3 [default = KEYCLASS_AKPU];
17 }