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

Commit 495ceb90 authored by Orion Hodson's avatar Orion Hodson Committed by Gerrit Code Review
Browse files

Merge "Revert "Move keymint to android.hardware.security.""

parents f3ff53da 1ffcdeba
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