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

Commit 0fe13089 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Correct UseHmacKey parameter" into rvc-dev am: ecd5e55c am: 8be00500 am: 6cd49e8b

Change-Id: I96c35f15cb855ae10e616dedad201a9a011eca51
parents 2f688392 6cd49e8b
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -115,7 +115,9 @@ class Keymaster4_1HidlTest : public V4_0::test::KeymasterHidlTest {
    ErrorCode UseHmacKey(const HidlBuf& hmacKeyBlob) {
        auto [result, mac, out_params] =
                ProcessMessage(hmacKeyBlob, KeyPurpose::SIGN, "1234567890123456",
                               AuthorizationSetBuilder().Authorization(TAG_MAC_LENGTH, 128));
                               AuthorizationSetBuilder()
                                       .Authorization(TAG_MAC_LENGTH, 128)
                                       .Digest(Digest::SHA_2_256));
        return result;
    }