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

Unified Diff: components/os_crypt/os_crypt_mocker_linux.cc

Issue 1973483002: OSCrypt for POSIX uses libsecret to store a randomised encryption key. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Recommendations Created 4 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/os_crypt/os_crypt_mocker_linux.h ('k') | components/os_crypt/os_crypt_util_linux_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/os_crypt/os_crypt_mocker_linux.cc
diff --git a/components/os_crypt/os_crypt_mocker_linux.cc b/components/os_crypt/os_crypt_mocker_linux.cc
new file mode 100644
index 0000000000000000000000000000000000000000..a222c88d98a09e1046a3a50c7af41d02ac5aa174
--- /dev/null
+++ b/components/os_crypt/os_crypt_mocker_linux.cc
@@ -0,0 +1,58 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "components/os_crypt/os_crypt_mocker_linux.h"
+
+#include "base/base64.h"
+#include "base/lazy_instance.h"
+#include "base/rand_util.h"
+#include "components/os_crypt/os_crypt.h"
+
+namespace {
+
+static base::LazyInstance<OSCryptMockerLinux>::Leaky g_mocker =
+ LAZY_INSTANCE_INITIALIZER;
+
+KeyStorageLinux* GetKeyStorage() {
+ return OSCryptMockerLinux::GetInstance();
+}
+
+std::string* GetPassword() {
+ return OSCryptMockerLinux::GetInstance()->GetKeyPtr();
+}
+
+} // namespace
+
+std::string OSCryptMockerLinux::GetKey() {
+ if (key_.empty())
+ base::Base64Encode(base::RandBytesAsString(16), &key_);
+ return key_;
+}
+
+bool OSCryptMockerLinux::Init() {
+ return true;
+}
+
+void OSCryptMockerLinux::ResetTo(base::StringPiece new_key) {
+ key_ = new_key.as_string();
+}
+
+std::string* OSCryptMockerLinux::GetKeyPtr() {
+ return &key_;
+}
+
+// static
+OSCryptMockerLinux* OSCryptMockerLinux::GetInstance() {
+ return g_mocker.Pointer();
+}
+
+// static
+void OSCryptMockerLinux::SetUpWithSingleton() {
+ UseMockKeyStorageForTesting(&GetKeyStorage, &GetPassword);
+}
+
+// static
+void OSCryptMockerLinux::TearDown() {
+ UseMockKeyStorageForTesting(nullptr, nullptr);
+}
« no previous file with comments | « components/os_crypt/os_crypt_mocker_linux.h ('k') | components/os_crypt/os_crypt_util_linux_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698