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

Unified Diff: components/autofill/core/browser/webdata/system_encryptor.cc

Issue 2698103002: Allow embedder to use custom cryptography in Autofill table. (Closed)
Patch Set: Changed the ifdef name space Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/autofill/core/browser/webdata/system_encryptor.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/autofill/core/browser/webdata/system_encryptor.cc
diff --git a/components/autofill/core/browser/webdata/system_encryptor.cc b/components/autofill/core/browser/webdata/system_encryptor.cc
new file mode 100644
index 0000000000000000000000000000000000000000..7b16c08952921df399a2e7deef26503b8fdd6bc7
--- /dev/null
+++ b/components/autofill/core/browser/webdata/system_encryptor.cc
@@ -0,0 +1,21 @@
+// Copyright 2017 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/autofill/core/browser/webdata/system_encryptor.h"
+
+#include "components/os_crypt/os_crypt.h"
+
+namespace autofill {
+
+bool SystemEncryptor::EncryptString16(const base::string16& plaintext,
+ std::string* ciphertext) const {
+ return ::OSCrypt::EncryptString16(plaintext, ciphertext);
+}
+
+bool SystemEncryptor::DecryptString16(const std::string& ciphertext,
+ base::string16* plaintext) const {
+ return ::OSCrypt::DecryptString16(ciphertext, plaintext);
+}
+
+} // namespace autofill
« no previous file with comments | « components/autofill/core/browser/webdata/system_encryptor.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698