Home
last modified time | relevance | path

Searched refs:cborEncodeBoolean (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/system/security/identity/util/test/java/com/android/security/identity/internal/
H A DUtilUnitTests.java284 assertEquals(true, Util.cborDecodeBoolean(Util.cborEncodeBoolean(true))); in cborEncodeDecodeBoolean()
285 assertEquals(false, Util.cborDecodeBoolean(Util.cborEncodeBoolean(false))); in cborEncodeDecodeBoolean()
/aosp_15_r20/cts/tests/tests/identity/src/android/security/identity/cts/
H A DProvisioningTest.java168 .putEntry(mdlNs, "Cryptanalyst", idsNoAuth, Util.cborEncodeBoolean(true)) in createCredentialWithChallengeAndAcpId()
/aosp_15_r20/system/security/identity/util/src/java/com/android/security/identity/internal/
H A DUtil.java746 public static byte[] cborEncodeBoolean(boolean value) { in cborEncodeBoolean() method in Util