blob: 44ed2070218ca66f97132e75980bae770d6ca33b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
// Copyright (c) 2006-2008 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 "chrome/browser/password_manager/encryptor.h"
#include "base/logging.h"
#include "base/utf_string_conversions.h"
bool Encryptor::EncryptString16(const string16& plaintext,
std::string* ciphertext) {
return EncryptString(UTF16ToUTF8(plaintext), ciphertext);
}
bool Encryptor::DecryptString16(const std::string& ciphertext,
string16* plaintext) {
std::string utf8;
if (!DecryptString(ciphertext, &utf8))
return false;
*plaintext = UTF8ToUTF16(utf8);
return true;
}
bool Encryptor::EncryptString(const std::string& plaintext,
std::string* ciphertext) {
// This doesn't actually encrypt, we need to work on the Encryptor API.
// http://code.google.com/p/chromium/issues/detail?id=25404
// this does a copy
ciphertext->assign(plaintext.data(), plaintext.length());
return true;
}
bool Encryptor::DecryptString(const std::string& ciphertext,
std::string* plaintext) {
// This doesn't actually decrypt, we need to work on the Encryptor API.
// http://code.google.com/p/chromium/issues/detail?id=25404
plaintext->assign(ciphertext.data(), ciphertext.length());
return true;
}
|