HomeSort by relevance Sort by last modified time
    Searched refs:cipher_text (Results 1 - 9 of 9) 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;
  /external/chromium_org/chrome/browser/password_manager/
login_database_posix.cc 13 std::string* cipher_text) const {
14 *cipher_text = UTF16ToUTF8(plain_text);
19 const std::string& cipher_text,
21 *plain_text = UTF8ToUTF16(cipher_text);
login_database_win.cc 11 std::string* cipher_text) const {
12 if (Encryptor::EncryptString16(plain_text, cipher_text))
18 const std::string& cipher_text,
20 if (Encryptor::DecryptString16(cipher_text, plain_text))
login_database_mac.cc 13 std::string* cipher_text) const {
14 *cipher_text = std::string();
19 const std::string& cipher_text,
login_database.h 100 // Encrypts plain_text, setting the value of cipher_text and returning true if
101 // successful, or returning false and leaving cipher_text unchanged if
105 std::string* cipher_text) const;
107 // Decrypts cipher_text, setting the value of plain_text and returning true if
111 EncryptionResult DecryptedString(const std::string& cipher_text,
  /external/chromium_org/content/renderer/webcrypto/
webcrypto_impl_unittest.cc 578 const char* cipher_text; member in struct:content::TestCase
597 // cipher_text
627 // cipher_text
646 // cipher_text
675 ExpectArrayBufferMatchesHex(test.cipher_text, output);
678 std::vector<uint8> cipher_text = HexStringToBytes(test.cipher_text); local
681 cipher_text,
689 if (cipher_text.size() >= kAesCbcBlockSize) {
692 &cipher_text[0]
    [all...]

Completed in 223 milliseconds