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

Commit d7c3a552 authored by Robert Shih's avatar Robert Shih Committed by Automerger Merge Worker
Browse files

Merge "drm 1.3 vts: call signRSA with non-empty args" into rvc-dev am: 9ef4f067

Change-Id: Ia556b0d1216f4ddfede373bbd4b918745bbd4cde
parents 2fc267b6 9ef4f067
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -39,10 +39,10 @@ TEST_P(DrmHalTestV1_3, SignRsaNotAllowed) {
    }

    // signRSA
    const hidl_vec<uint8_t>& sessionId{};
    const hidl_string& algorithm{};
    const hidl_vec<uint8_t>& message{};
    const hidl_vec<uint8_t>& wrappedKey{};
    const hidl_vec<uint8_t>& sessionId{0};
    const hidl_string& algorithm{"RSASSA-PSS-SHA1"};
    const hidl_vec<uint8_t>& message{0};
    const hidl_vec<uint8_t>& wrappedKey{0};
    auto res = drmPlugin_->signRSA(
        sessionId, algorithm, message, wrappedKey,
        [&](StatusV1_0 status, const hidl_vec<uint8_t>& signature) {