/external/chromium_org/components/gcm_driver/ |
system_encryptor.cc | 18 bool SystemEncryptor::DecryptString(const std::string& ciphertext, 20 return ::OSCrypt::DecryptString(ciphertext, plaintext);
|
system_encryptor.h | 21 virtual bool DecryptString(const std::string& ciphertext,
|
/external/chromium_org/components/sync_driver/ |
system_encryptor.cc | 18 bool SystemEncryptor::DecryptString(const std::string& ciphertext, 20 return ::OSCrypt::DecryptString(ciphertext, plaintext);
|
system_encryptor.h | 21 virtual bool DecryptString(const std::string& ciphertext,
|
system_encryptor_unittest.cc | 31 EXPECT_TRUE(encryptor_.DecryptString(ciphertext, &plaintext));
|
/external/chromium_org/content/public/browser/ |
cookie_crypto_delegate.h | 16 virtual bool DecryptString(const std::string& ciphertext,
|
/external/chromium_org/sync/util/ |
encryptor.h | 18 virtual bool DecryptString(const std::string& ciphertext,
|
cryptographer.cc | 299 if (!encryptor_->DecryptString(encrypted_data, &unencrypted_token)) {
|
/external/chromium_org/google_apis/gcm/base/ |
encryptor.h | 19 virtual bool DecryptString(const std::string& ciphertext,
|
fake_encryptor.cc | 19 bool FakeEncryptor::DecryptString(const std::string& ciphertext,
|
fake_encryptor.h | 22 virtual bool DecryptString(const std::string& ciphertext,
|
/external/chromium_org/sync/test/ |
fake_encryptor.cc | 19 bool FakeEncryptor::DecryptString(const std::string& ciphertext,
|
fake_encryptor.h | 22 virtual bool DecryptString(const std::string& ciphertext,
|
/external/chromium_org/components/os_crypt/ |
os_crypt_unittest.cc | 68 EXPECT_TRUE(OSCrypt::DecryptString(ciphertext, &utf8_result)); 74 EXPECT_TRUE(OSCrypt::DecryptString(ciphertext, &utf8_result)); 85 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 91 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 97 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 108 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 116 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 123 ASSERT_TRUE(OSCrypt::DecryptString(ciphertext, &result)); 139 EXPECT_FALSE(OSCrypt::DecryptString(ciphertext, &result));
|
os_crypt.h | 35 static bool DecryptString(const std::string& ciphertext,
|
os_crypt_posix.cc | 65 if (!DecryptString(ciphertext, &utf8)) 101 bool OSCrypt::DecryptString(const std::string& ciphertext,
|
os_crypt_win.cc | 22 if (!DecryptString(ciphertext, &utf8)) 50 bool OSCrypt::DecryptString(const std::string& ciphertext,
|
/external/chromium_org/chrome/browser/net/ |
cookie_store_util.cc | 134 virtual bool DecryptString(const std::string& ciphertext, 143 bool CookieOSCryptoDelegate::DecryptString(const std::string& ciphertext, 145 return OSCrypt::DecryptString(ciphertext, plaintext);
|
/external/chromium_org/components/signin/core/browser/webdata/ |
token_service_table.cc | 107 OSCrypt::DecryptString(encrypted_token, &decrypted_token);
|
/external/chromium_org/chrome/browser/signin/ |
local_auth.cc | 94 return OSCrypt::DecryptString(unbase64, decoded);
|
/external/chromium_org/content/browser/net/ |
sqlite_persistent_cookie_store_unittest.cc | 45 virtual bool DecryptString(const std::string& ciphertext, 65 bool CookieCryptor::DecryptString(const std::string& ciphertext,
|
sqlite_persistent_cookie_store.cc | 725 crypto_->DecryptString(encrypted_value, &value); [all...] |
/external/chromium_org/components/autofill/core/browser/ |
autofill_ie_toolbar_import_win.cc | 89 if (OSCrypt::DecryptString(data, &out_data)) {
|
/external/chromium_org/sync/tools/ |
sync_client.cc | 116 virtual bool DecryptString(const std::string& ciphertext,
|
/external/chromium_org/google_apis/gcm/engine/ |
gcm_store_impl.cc | 638 encryptor_->DecryptString(result, &decrypted_token); [all...] |