Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fdaab3d2 authored by Janis Danisevskis's avatar Janis Danisevskis Committed by android-build-merger
Browse files

Merge "Relax HMAC computation check" into pi-dev

am: b6093dcc

Change-Id: I205cf45af3e58028c120c2a118dd9dd6509e0bad
parents db474080 b6093dcc
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -164,8 +164,8 @@ static void computeHmac(const Keymaster::KeymasterSet& keymasters,
                    sharingCheck = curSharingCheck;
                    firstKeymaster = false;
                }
                CHECK(curSharingCheck == sharingCheck)
                    << "HMAC computation failed for " << *keymaster  //
                if (curSharingCheck != sharingCheck)
                    LOG(WARNING) << "HMAC computation failed for " << *keymaster  //
                                 << " Expected: " << sharingCheck                 //
                                 << " got: " << curSharingCheck;
            });