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

Commit ae1e0e92 authored by Alex Klyubin's avatar Alex Klyubin
Browse files

Fix a bug in Android Keystore updateAAD.

The variant of CipherSpi.engineUpdateAAD which takes ByteBuffers
delegated to a byte[]-taking variant of superclass instead of its own
class.

Bug: 18088752
Change-Id: I3b426bbdca54bbf7f6f3939589da07b24db14d0d
parent 7e786954
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -446,7 +446,7 @@ abstract class AndroidKeyStoreCipherSpiBase extends CipherSpi implements KeyStor
            inputLen = input.length;
            src.get(input);
        }
        super.engineUpdateAAD(input, inputOffset, inputLen);
        engineUpdateAAD(input, inputOffset, inputLen);
    }

    @Override