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

Commit 424526dd authored by Hao Dong's avatar Hao Dong
Browse files

Rename getOpId() to getOperationHandle().

Test: m CtsVerifier
Bug: 309525420

Change-Id: I084259de1fd83bcf6c05b72de1da1272263a2c0c
parent 67566c6f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -18633,7 +18633,7 @@ package android.hardware.biometrics {
    method @Deprecated @Nullable public android.security.identity.IdentityCredential getIdentityCredential();
    method @FlaggedApi("android.hardware.biometrics.add_key_agreement_crypto_object") @Nullable public javax.crypto.KeyAgreement getKeyAgreement();
    method @Nullable public javax.crypto.Mac getMac();
    method @FlaggedApi("android.hardware.biometrics.get_op_id_crypto_object") public long getOpId();
    method @FlaggedApi("android.hardware.biometrics.get_op_id_crypto_object") public long getOperationHandle();
    method @Nullable public android.security.identity.PresentationSession getPresentationSession();
    method @Nullable public java.security.Signature getSignature();
  }
+1 −1
Original line number Diff line number Diff line
@@ -857,7 +857,7 @@ public class BiometricPrompt implements BiometricAuthenticator, BiometricConstan
         * Get the operation handle associated with this object or 0 if none.
         */
        @FlaggedApi(FLAG_GET_OP_ID_CRYPTO_OBJECT)
        public long getOpId() {
        public long getOperationHandle() {
            return super.getOpId();
        }
    }