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

Side by Side Diff: chrome/browser/chromeos/cros/cryptohome_library.cc

Issue 3076029: Allow chrome for cros to be started with a username / password (Closed)
Patch Set: Only declare StubLogin on cros builds Created 10 years, 4 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
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "chrome/browser/chromeos/cros/cryptohome_library.h" 5 #include "chrome/browser/chromeos/cros/cryptohome_library.h"
6 6
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "chrome/browser/chrome_thread.h" 8 #include "chrome/browser/chrome_thread.h"
9 9
10 namespace chromeos { 10 namespace chromeos {
11 11
12 bool CryptohomeLibraryImpl::CheckKey(const std::string& user_email, 12 // This class handles the interaction with the ChromeOS cryptohome library APIs.
13 const std::string& passhash) { 13 class CryptohomeLibraryImpl: public CryptohomeLibrary {
14 return chromeos::CryptohomeCheckKey(user_email.c_str(), passhash.c_str()); 14 public:
15 CryptohomeLibraryImpl() {}
16 virtual ~CryptohomeLibraryImpl() {}
17
18 bool CheckKey(const std::string& user_email, const std::string& passhash) {
19 return chromeos::CryptohomeCheckKey(user_email.c_str(), passhash.c_str());
20 }
21
22 bool MigrateKey(const std::string& user_email,
23 const std::string& old_hash,
24 const std::string& new_hash) {
25 return chromeos::CryptohomeMigrateKey(user_email.c_str(), old_hash.c_str(),
26 new_hash.c_str());
27 }
28
29 bool Remove(const std::string& user_email) {
30 return chromeos::CryptohomeRemove(user_email.c_str());
31 }
32
33 bool Mount(const std::string& user_email,
34 const std::string& passhash,
35 int* error_code) {
36 return chromeos::CryptohomeMountAllowFail(user_email.c_str(),
37 passhash.c_str(), error_code);
38 }
39
40 bool MountForBwsi(int* error_code) {
41 return chromeos::CryptohomeMountGuest(error_code);
42 }
43
44 bool IsMounted() {
45 return chromeos::CryptohomeIsMounted();
46 }
47
48 CryptohomeBlob GetSystemSalt() {
49 return chromeos::CryptohomeGetSystemSalt();
50 }
51
52 private:
53 DISALLOW_COPY_AND_ASSIGN(CryptohomeLibraryImpl);
54 };
55
56 class CryptohomeLibraryStubImpl: public CryptohomeLibrary {
57 public:
58 CryptohomeLibraryStubImpl() {}
59 virtual ~CryptohomeLibraryStubImpl() {}
60
61 bool CheckKey(const std::string& user_email, const std::string& passhash) {
62 return true;
63 }
64
65 bool MigrateKey(const std::string& user_email,
66 const std::string& old_hash,
67 const std::string& new_hash) {
68 return true;
69 }
70
71 bool Remove(const std::string& user_email) {
72 return true;
73 }
74
75 bool Mount(const std::string& user_email,
76 const std::string& passhash,
77 int* error_code) {
78 return true;
79 }
80
81 bool MountForBwsi(int* error_code) {
82 return true;
83 }
84
85 bool IsMounted() {
86 return true;
87 }
88
89 CryptohomeBlob GetSystemSalt() {
90 CryptohomeBlob salt = CryptohomeBlob();
91 salt.push_back(0);
92 salt.push_back(0);
93 return salt;
94 }
95
96 private:
97 DISALLOW_COPY_AND_ASSIGN(CryptohomeLibraryStubImpl);
98 };
99
100 // static
101 CryptohomeLibrary* CryptohomeLibrary::GetImpl(bool stub) {
102 if (stub)
103 return new CryptohomeLibraryStubImpl();
104 else
105 return new CryptohomeLibraryImpl();
15 } 106 }
16 107
17 bool CryptohomeLibraryImpl::MigrateKey(const std::string& user_email, 108 } // namespace chromeos
18 const std::string& old_hash,
19 const std::string& new_hash) {
20 return chromeos::CryptohomeMigrateKey(user_email.c_str(),
21 old_hash.c_str(),
22 new_hash.c_str());
23 }
24
25 bool CryptohomeLibraryImpl::Remove(const std::string& user_email) {
26 return chromeos::CryptohomeRemove(user_email.c_str());
27 }
28
29 bool CryptohomeLibraryImpl::Mount(const std::string& user_email,
30 const std::string& passhash,
31 int* error_code) {
32 return chromeos::CryptohomeMountAllowFail(user_email.c_str(),
33 passhash.c_str(),
34 error_code);
35 }
36
37 bool CryptohomeLibraryImpl::MountForBwsi(int* error_code) {
38 return chromeos::CryptohomeMountGuest(error_code);
39 }
40
41 bool CryptohomeLibraryImpl::IsMounted() {
42 return chromeos::CryptohomeIsMounted();
43 }
44
45 CryptohomeBlob CryptohomeLibraryImpl::GetSystemSalt() {
46 return chromeos::CryptohomeGetSystemSalt();
47 }
48
49 } // namespace chromeos
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/cros/cryptohome_library.h ('k') | chrome/browser/chromeos/cros/input_method_library.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698