HomeSort by relevance Sort by last modified time
    Searched refs:cipher_text (Results 1 - 4 of 4) sorted by null

  /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 2403 milliseconds