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

Unified Diff: components/encryptor/os_crypt_win.cc

Issue 200713005: components: Rename encryptor directory to os_crypt. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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/encryptor/os_crypt_unittest.cc ('k') | components/os_crypt.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/encryptor/os_crypt_win.cc
diff --git a/components/encryptor/os_crypt_win.cc b/components/encryptor/os_crypt_win.cc
deleted file mode 100644
index 3853509c391dead4194ab483bf9f81589962857b..0000000000000000000000000000000000000000
--- a/components/encryptor/os_crypt_win.cc
+++ /dev/null
@@ -1,66 +0,0 @@
-// Copyright 2014 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/encryptor/os_crypt.h"
-
-#include <windows.h>
-#include <wincrypt.h>
-
-#include "base/strings/utf_string_conversions.h"
-
-#pragma comment(lib, "crypt32.lib")
-
-bool OSCrypt::EncryptString16(const base::string16& plaintext,
- std::string* ciphertext) {
- return EncryptString(base::UTF16ToUTF8(plaintext), ciphertext);
-}
-
-bool OSCrypt::DecryptString16(const std::string& ciphertext,
- base::string16* plaintext) {
- std::string utf8;
- if (!DecryptString(ciphertext, &utf8))
- return false;
-
- *plaintext = base::UTF8ToUTF16(utf8);
- return true;
-}
-
-bool OSCrypt::EncryptString(const std::string& plaintext,
- std::string* ciphertext) {
- DATA_BLOB input;
- input.pbData = const_cast<BYTE*>(
- reinterpret_cast<const BYTE*>(plaintext.data()));
- input.cbData = static_cast<DWORD>(plaintext.length());
-
- DATA_BLOB output;
- BOOL result = CryptProtectData(&input, L"", NULL, NULL, NULL,
- 0, &output);
- if (!result)
- return false;
-
- // this does a copy
- ciphertext->assign(reinterpret_cast<std::string::value_type*>(output.pbData),
- output.cbData);
-
- LocalFree(output.pbData);
- return true;
-}
-
-bool OSCrypt::DecryptString(const std::string& ciphertext,
- std::string* plaintext) {
- DATA_BLOB input;
- input.pbData = const_cast<BYTE*>(
- reinterpret_cast<const BYTE*>(ciphertext.data()));
- input.cbData = static_cast<DWORD>(ciphertext.length());
-
- DATA_BLOB output;
- BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL,
- 0, &output);
- if (!result)
- return false;
-
- plaintext->assign(reinterpret_cast<char*>(output.pbData), output.cbData);
- LocalFree(output.pbData);
- return true;
-}
« no previous file with comments | « components/encryptor/os_crypt_unittest.cc ('k') | components/os_crypt.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698