Home | History | Annotate | Download | only in engine

Lines Matching defs:nigori

290   // We intercept updates to the Nigori node, update the Cryptographer and
291 // encrypt any unsynced changes here because there is no Nigori
294 if (specifics.HasExtension(sync_pb::nigori)) {
295 const sync_pb::NigoriSpecifics& nigori =
296 specifics.GetExtension(sync_pb::nigori);
297 if (!nigori.encrypted().blob().empty()) {
298 if (cryptographer->CanDecrypt(nigori.encrypted())) {
299 cryptographer->SetKeys(nigori.encrypted());
301 cryptographer->SetPendingKeys(nigori.encrypted());
307 syncable::GetEncryptedDataTypesFromNigori(nigori);
314 // unsynced change and not the nigori node. We ensure foward progress
319 VLOG(1) << "Marking nigori node update as conflicting due to being unable"