Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2045)

Side by Side Diff: vault_keyset.proto

Issue 6598009: Deprecating tracked_directories as a Vault parameter (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cryptohome.git@master
Patch Set: Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« service.h ('K') | « service.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 package cryptohome; 5 package cryptohome;
6 6
7 message SerializedVaultKeyset { 7 message SerializedVaultKeyset {
8 enum Flags { 8 enum Flags {
9 NONE = 0; 9 NONE = 0;
10 TPM_WRAPPED = 1; 10 TPM_WRAPPED = 1;
11 SCRYPT_WRAPPED = 2; 11 SCRYPT_WRAPPED = 2;
12 } 12 }
13 required int32 flags = 1; 13 required int32 flags = 1;
14 required bytes salt = 2; 14 required bytes salt = 2;
15 required bytes wrapped_keyset = 3; 15 required bytes wrapped_keyset = 3;
16 optional bytes tpm_key = 4; 16 optional bytes tpm_key = 4;
17 optional bytes tpm_public_key_hash = 5; 17 optional bytes tpm_public_key_hash = 5;
18 optional int32 password_rounds = 6; 18 optional int32 password_rounds = 6;
19 repeated string tracked_subdirectories = 7; 19 repeated string deprecated_tracked_subdirectories = 7;
20 } 20 }
OLDNEW
« service.h ('K') | « service.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698