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

Commit fdc32ed3 authored by Orion Hodson's avatar Orion Hodson Committed by Automerger Merge Worker
Browse files

Merge "Revert "Move keymint to android.hardware.security."" am: 495ceb90

Original change: https://android-review.googlesource.com/c/platform/hardware/interfaces/+/1525806

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Iff93d3ee047dc5dc5584d944e1e9a0a3d639cbc8
parents 962bd5be 495ceb90
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -299,7 +299,7 @@
        </interface>
    </hal>
    <hal format="aidl" optional="true">
        <name>android.hardware.security.keymint</name>
        <name>android.hardware.keymint</name>
        <interface>
            <name>IKeyMintDevice</name>
            <instance>default</instance>
+2 −2
Original line number Diff line number Diff line
aidl_interface {
    name: "android.hardware.security.keymint",
    name: "android.hardware.keymint",
    vendor_available: true,
    srcs: [
        "android/hardware/security/keymint/*.aidl",
        "android/hardware/keymint/*.aidl",
    ],
    stability: "vintf",
    backend: {
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
package android.hardware.keymint;
@Backing(type="int") @VintfStability
enum Algorithm {
  RSA = 1,
+3 −3
Original line number Diff line number Diff line
@@ -15,10 +15,10 @@
// with such a backward incompatible change, it has a high risk of breaking
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
package android.hardware.keymint;
@VintfStability
parcelable BeginResult {
  long challenge;
  android.hardware.security.keymint.KeyParameter[] params;
  android.hardware.security.keymint.IKeyMintOperation operation;
  android.hardware.keymint.KeyParameter[] params;
  android.hardware.keymint.IKeyMintOperation operation;
}
Loading