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

  /external/chromium_org/sync/internal_api/
syncapi_internal.cc 84 if (!cryptographer->CanDecrypt(left.encrypted())) {
93 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 549 if (temp_cryptographer.CanDecrypt(encrypted)) {
    [all...]
  /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 254 !cryptographer->CanDecrypt(update.specifics().encrypted())) {
263 cryptographer->CanDecrypt(prev_specifics.encrypted()))) {
syncer_util.cc 210 !cryptographer->CanDecrypt(specifics.encrypted())) {
220 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 139 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());
144 " Cryptographer thinks typed urls not encrypted, and CanDecrypt"
150 " Cryptographer thinks typed urls are encrypted, and CanDecrypt"
156 " Cryptographer thinks typed urls are encrypted, but CanDecrypt"
162 " Cryptographer thinks typed urls not encrypted, but CanDecrypt"
  /external/chromium_org/components/sync_driver/
generic_change_processor.cc 623 const bool can_decrypt = crypto->CanDecrypt(specifics.encrypted());

Completed in 241 milliseconds