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

Commit aa02923c authored by Treehugger Robot's avatar Treehugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Security: Provide generated java sources." am: 2d56123a am: f56ef2c8

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

Change-Id: If9cf2ea18fa7b1904a7199e211679b448a1510d4
parents 9069693a f56ef2c8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -19,7 +19,8 @@ aidl_interface {
    stability: "vintf",
    backend: {
        java: {
            sdk_version: "module_current",
            platform_apis: true,
            srcs_available: true,
        },
        ndk: {
            vndk: {
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
/* @hide */
@Backing(type="int") @VintfStability
enum Algorithm {
  RSA = 1,
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
/* @hide */
@RustDerive(Clone=true, Eq=true, Hash=true, Ord=true, PartialEq=true, PartialOrd=true) @VintfStability
parcelable AttestationKey {
  byte[] keyBlob;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
/* @hide */
@VintfStability
parcelable BeginResult {
  long challenge;
+1 −0
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.security.keymint;
/* @hide */
@Backing(type="int") @VintfStability
enum BlockMode {
  ECB = 1,
Loading