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

Commit 4b23ea8b authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Fix CryptoInfo.toString" into rvc-dev

parents c25e26ae 3c715d57
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2762,7 +2762,7 @@ final public class MediaCodec {
                builder.append(hexdigits.charAt(key[i] & 0x0f));
            }
            builder.append("], iv [");
            for (int i = 0; i < key.length; i++) {
            for (int i = 0; i < iv.length; i++) {
                builder.append(hexdigits.charAt((iv[i] & 0xf0) >> 4));
                builder.append(hexdigits.charAt(iv[i] & 0x0f));
            }