OLD | NEW |
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 #include "components/encryptor/os_crypt.h" | 5 #include "components/os_crypt/os_crypt.h" |
6 | 6 |
7 #include <windows.h> | 7 #include <windows.h> |
8 #include <wincrypt.h> | 8 #include <wincrypt.h> |
9 | 9 |
10 #include "base/strings/utf_string_conversions.h" | 10 #include "base/strings/utf_string_conversions.h" |
11 | 11 |
12 #pragma comment(lib, "crypt32.lib") | 12 #pragma comment(lib, "crypt32.lib") |
13 | 13 |
14 bool OSCrypt::EncryptString16(const base::string16& plaintext, | 14 bool OSCrypt::EncryptString16(const base::string16& plaintext, |
15 std::string* ciphertext) { | 15 std::string* ciphertext) { |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 DATA_BLOB output; | 57 DATA_BLOB output; |
58 BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL, | 58 BOOL result = CryptUnprotectData(&input, NULL, NULL, NULL, NULL, |
59 0, &output); | 59 0, &output); |
60 if (!result) | 60 if (!result) |
61 return false; | 61 return false; |
62 | 62 |
63 plaintext->assign(reinterpret_cast<char*>(output.pbData), output.cbData); | 63 plaintext->assign(reinterpret_cast<char*>(output.pbData), output.cbData); |
64 LocalFree(output.pbData); | 64 LocalFree(output.pbData); |
65 return true; | 65 return true; |
66 } | 66 } |
OLD | NEW |