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

Side by Side Diff: components/os_crypt/os_crypt.h

Issue 2152493002: Revert of Forward password-store switch to OSCrypt component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
« no previous file with comments | « components/os_crypt/key_storage_linux.cc ('k') | components/os_crypt/os_crypt_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef COMPONENTS_OS_CRYPT_OS_CRYPT_H_ 5 #ifndef COMPONENTS_OS_CRYPT_OS_CRYPT_H_
6 #define COMPONENTS_OS_CRYPT_OS_CRYPT_H_ 6 #define COMPONENTS_OS_CRYPT_OS_CRYPT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "build/build_config.h" 12 #include "build/build_config.h"
13 13
14 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) 14 #if defined(USE_LIBSECRET)
15 #include "components/os_crypt/key_storage_linux.h" 15 #include "components/os_crypt/key_storage_linux.h"
16 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) 16 #endif
17 17
18 // The OSCrypt class gives access to simple encryption and decryption of 18 // The OSCrypt class gives access to simple encryption and decryption of
19 // strings. Note that on Mac, access to the system Keychain is required and 19 // strings. Note that on Mac, access to the system Keychain is required and
20 // these calls can block the current thread to collect user input. The same is 20 // these calls can block the current thread to collect user input. The same is
21 // true for Linux, if a password management tool is available. 21 // true for Linux, if a password management tool is available.
22 class OSCrypt { 22 class OSCrypt {
23 public: 23 public:
24 #if defined(OS_LINUX) && !defined(OS_CHROMEOS)
25 // If |store_type| is a known password store, we will attempt to use it.
26 // In any other case, we default to auto-detecting the store.
27 // This should not be changed after OSCrypt has been used.
28 static void SetStore(const std::string& store_type);
29 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS)
30
31 // Encrypt a string16. The output (second argument) is really an array of 24 // Encrypt a string16. The output (second argument) is really an array of
32 // bytes, but we're passing it back as a std::string. 25 // bytes, but we're passing it back as a std::string.
33 static bool EncryptString16(const base::string16& plaintext, 26 static bool EncryptString16(const base::string16& plaintext,
34 std::string* ciphertext); 27 std::string* ciphertext);
35 28
36 // Decrypt an array of bytes obtained with EncryptString16 back into a 29 // Decrypt an array of bytes obtained with EncryptString16 back into a
37 // string16. Note that the input (first argument) is a std::string, so you 30 // string16. Note that the input (first argument) is a std::string, so you
38 // need to first get your (binary) data into a string. 31 // need to first get your (binary) data into a string.
39 static bool DecryptString16(const std::string& ciphertext, 32 static bool DecryptString16(const std::string& ciphertext,
40 base::string16* plaintext); 33 base::string16* plaintext);
(...skipping 11 matching lines...) Expand all
52 #if defined(OS_MACOSX) 45 #if defined(OS_MACOSX)
53 // For unit testing purposes we instruct the Encryptor to use a mock Keychain 46 // For unit testing purposes we instruct the Encryptor to use a mock Keychain
54 // on the Mac. The default is to use the real Keychain. 47 // on the Mac. The default is to use the real Keychain.
55 static void UseMockKeychain(bool use_mock); 48 static void UseMockKeychain(bool use_mock);
56 #endif 49 #endif
57 50
58 private: 51 private:
59 DISALLOW_IMPLICIT_CONSTRUCTORS(OSCrypt); 52 DISALLOW_IMPLICIT_CONSTRUCTORS(OSCrypt);
60 }; 53 };
61 54
62 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(UNIT_TEST) 55 #if (defined(USE_LIBSECRET) || defined(USE_KWALLET)) && defined(UNIT_TEST)
63 // For unit testing purposes, inject methods to be used. 56 // For unit testing purposes, inject methods to be used.
64 // |get_key_storage_mock| provides the desired |KeyStorage| implementation. 57 // |get_key_storage_mock| provides the desired |KeyStorage| implementation.
65 // If the provider returns |nullptr|, a hardcoded password will be used. 58 // If the provider returns |nullptr|, a hardcoded password will be used.
66 // |get_password_v11_mock| provides a password to derive the encryption key from 59 // |get_password_v11_mock| provides a password to derive the encryption key from
67 // If both parameters are |nullptr|, the real implementation is restored. 60 // If both parameters are |nullptr|, the real implementation is restored.
68 void UseMockKeyStorageForTesting(KeyStorageLinux* (*get_key_storage_mock)(), 61 void UseMockKeyStorageForTesting(KeyStorageLinux* (*get_key_storage_mock)(),
69 std::string* (*get_password_v11_mock)()); 62 std::string* (*get_password_v11_mock)());
70 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) && defined(UNIT_TEST) 63 #endif // (defined(USE_LIBSECRET) || defined(USE_KWALLET)) &&
64 // defined(UNIT_TEST)
71 65
72 #endif // COMPONENTS_OS_CRYPT_OS_CRYPT_H_ 66 #endif // COMPONENTS_OS_CRYPT_OS_CRYPT_H_
OLDNEW
« no previous file with comments | « components/os_crypt/key_storage_linux.cc ('k') | components/os_crypt/os_crypt_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698