Home
last modified time | relevance | path

Searched refs:DecryptErrorCode (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/external/rust/beto-rust/nearby/presence/ldt_np_jni/java/LdtNpJni/src/main/java/com/google/android/gms/nearby/presence/hazmat/
DLdtNpJni.java25 DecryptErrorCode.DATA_LEN_ERROR,
26 DecryptErrorCode.JNI_OP_ERROR,
27 DecryptErrorCode.MAC_MISMATCH
29 public @interface DecryptErrorCode { annotation in LdtNpJni
106 @DecryptErrorCode
DNpLdtCipher.kt19 import com.google.android.gms.nearby.presence.hazmat.LdtNpJni.DecryptErrorCode
186 DecryptErrorCode.MAC_MISMATCH -> return DecryptAndVerifyResultCode.MAC_MISMATCH in decryptAndVerify()
187DecryptErrorCode.DATA_LEN_ERROR -> check(false); // This condition is impossible, we validated dat… in decryptAndVerify()
188DecryptErrorCode.JNI_OP_ERROR -> throw LdtJniException("Error occurred during jni encrypt operatio… in decryptAndVerify()