OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:cipher_text
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/chrome/browser/password_manager/
login_database_posix.cc
12
std::string*
cipher_text
) const {
13
*
cipher_text
= UTF16ToUTF8(plain_text);
17
bool LoginDatabase::DecryptedString(const std::string&
cipher_text
,
19
*plain_text = UTF8ToUTF16(
cipher_text
);
login_database_mac.cc
12
std::string*
cipher_text
) const {
13
*
cipher_text
= std::string();
17
bool LoginDatabase::DecryptedString(const std::string&
cipher_text
,
login_database_win.cc
10
std::string*
cipher_text
) const {
11
return Encryptor::EncryptString16(plain_text,
cipher_text
);
14
bool LoginDatabase::DecryptedString(const std::string&
cipher_text
,
16
return Encryptor::DecryptString16(
cipher_text
, plain_text);
login_database.h
82
// Encrypts plain_text, setting the value of
cipher_text
and returning true if
83
// successful, or returning false and leaving
cipher_text
unchanged if
87
std::string*
cipher_text
) const;
89
// Decrypts
cipher_text
, setting the value of plain_text and returning true if
93
bool DecryptedString(const std::string&
cipher_text
,
/external/chromium/chrome/browser/password_manager/
login_database_win.cc
11
std::string
cipher_text
;
local
12
if (!Encryptor::EncryptString16(plain_text, &
cipher_text
))
14
return
cipher_text
;
17
string16 LoginDatabase::DecryptedString(const std::string&
cipher_text
)
20
if (!Encryptor::DecryptString16(
cipher_text
, &plain_text))
login_database_posix.cc
16
string16 LoginDatabase::DecryptedString(const std::string&
cipher_text
)
18
return UTF8ToUTF16(
cipher_text
);
login_database_mac.cc
15
string16 LoginDatabase::DecryptedString(const std::string&
cipher_text
) const {
login_database.h
82
// Returns a decrypted version of
cipher_text
.
83
string16 DecryptedString(const std::string&
cipher_text
) const;
Completed in 347 milliseconds