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

  /external/chromium_org/sync/internal_api/
syncapi_internal.cc 62 if (!cryptographer->CanDecrypt(left.encrypted())) {
71 if (!cryptographer->CanDecrypt(right.encrypted())) {
sync_encryption_handler_impl_unittest.cc 594 EXPECT_TRUE(GetCryptographer()->CanDecrypt(
596 EXPECT_TRUE(GetCryptographer()->CanDecrypt(nigori.encryption_keybag()));
    [all...]
sync_manager_impl_unittest.cc     [all...]
sync_encryption_handler_impl.cc 550 if (temp_cryptographer.CanDecrypt(encrypted)) {
    [all...]
  /external/chromium/chrome/browser/sync/util/
cryptographer_unittest.cc 25 EXPECT_FALSE(cryptographer.CanDecrypt(encrypted));
39 EXPECT_FALSE(cryptographer.CanDecrypt(encrypted));
122 EXPECT_FALSE(cryptographer.CanDecrypt(nigori));
cryptographer.h 40 // CanDecrypt should be used to verify whether the Cryptographer can decrypt
61 bool CanDecrypt(const sync_pb::EncryptedData& encrypted) const;
93 // responsible for checking that CanDecrypt(encrypted) == true.
97 // DecryptPendingKeys. This should only be used if CanDecrypt(encrypted) ==
cryptographer.cc 35 bool Cryptographer::CanDecrypt(const sync_pb::EncryptedData& data) const {
76 return std::string(""); // Caller should have called CanDecrypt(encrypt).
134 DCHECK(CanDecrypt(encrypted));
145 DCHECK(!CanDecrypt(encrypted));
  /external/chromium_org/sync/util/
cryptographer.cc 46 bool Cryptographer::CanDecrypt(const sync_pb::EncryptedData& data) const {
113 return std::string(); // Caller should have called CanDecrypt(encrypt).
189 if (pending_keys_.get() && CanDecrypt(*pending_keys_)) {
203 DCHECK(CanDecrypt(encrypted));
217 DCHECK(!CanDecrypt(encrypted));
312 if (!CanDecrypt(encrypted_bag))
cryptographer.h 47 // CanDecrypt should be used to verify whether the Cryptographer can decrypt
69 bool CanDecrypt(const sync_pb::EncryptedData& encrypted) const;
131 // responsible for checking that CanDecrypt(encrypted) == true.
136 // DecryptPendingKeys. This should only be used if CanDecrypt(encrypted) ==
cryptographer_unittest.cc 39 EXPECT_FALSE(cryptographer_.CanDecrypt(encrypted));
59 EXPECT_FALSE(cryptographer_.CanDecrypt(encrypted));
169 EXPECT_FALSE(cryptographer.CanDecrypt(nigori));
  /external/chromium_org/sync/test/
fake_sync_encryption_handler.cc 35 if (cryptographer_.CanDecrypt(nigori.encryption_keybag()))
  /external/chromium_org/sync/engine/
process_updates_util.cc 301 !cryptographer->CanDecrypt(update.specifics().encrypted())) {
310 cryptographer->CanDecrypt(prev_specifics.encrypted()))) {
syncer_util.cc 209 !cryptographer->CanDecrypt(specifics.encrypted())) {
219 if (!cryptographer->CanDecrypt(password.encrypted())) {
apply_control_data_updates_unittest.cc     [all...]
  /external/chromium_org/sync/syncable/
entry_kernel.cc 95 cryptographer->CanDecrypt(encrypted) &&
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_change_processor.cc 138 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());
143 " Cryptographer thinks typed urls not encrypted, and CanDecrypt"
149 " Cryptographer thinks typed urls are encrypted, and CanDecrypt"
155 " Cryptographer thinks typed urls are encrypted, but CanDecrypt"
161 " Cryptographer thinks typed urls not encrypted, but CanDecrypt"
generic_change_processor.cc 461 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());
bookmark_change_processor.cc 317 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());
322 " Cryptographer thinks bookmarks not encrypted, and CanDecrypt"
328 " Cryptographer thinks bookmarks are encrypted, and CanDecrypt"
334 " Cryptographer thinks bookmarks are encrypted, but CanDecrypt"
340 " Cryptographer thinks bookmarks not encrypted, but CanDecrypt"
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_util.cc 298 if (cryptographer->CanDecrypt(nigori.encrypted())) {
337 !cryptographer->CanDecrypt(specifics.encrypted())) {
344 if (!cryptographer->CanDecrypt(password.encrypted())) {
    [all...]
syncapi.cc     [all...]

Completed in 249 milliseconds