Home
last modified time | relevance | path

Searched refs:toHex (Results 1 – 10 of 10) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/
DV4SchemeVerifier.java19 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.toHex;
223 ApkSigningBlockUtils.toHex(certificatePublicKeyBytes), in parseAndVerifySignatureBlock()
224 ApkSigningBlockUtils.toHex(publicKeyBytes)); in parseAndVerifySignatureBlock()
251 toHex(expectedDigest), in verifyRootHashAndTree()
252 toHex(actualDigest)); in verifyRootHashAndTree()
260 toHex(expectedDigest), in verifyRootHashAndTree()
261 toHex(actualDigest)); in verifyRootHashAndTree()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/stamp/
DSourceStampVerifier.java22 import static com.android.apksig.internal.apk.ApkSigningBlockUtilsLite.toHex;
216 toHex(sourceStampBlockCertificateDigest), in verifySourceStampCertificate()
217 toHex(sourceStampCertificateDigest)); in verifySourceStampCertificate()
/tools/apksig/src/test/java/com/android/apksig/
DSourceStampVerifierTest.java20 import static com.android.apksig.internal.apk.ApkSigningBlockUtilsLite.toHex;
694 toHex(computeSha256DigestBytes(signingCertificate.getEncoded()))); in assertSigningCertificates()
717 String signingCertDigest = toHex(computeSha256DigestBytes(signingCert.getEncoded())); in assertV31Signers()
756 toHex(computeSha256DigestBytes(lineageCertificates.get(i).getEncoded()))); in assertSigningCertificatesInLineage()
DApkVerifierTest.java460 ApkSigningBlockUtils.toHex(digests.get(ContentDigestAlgorithm.CHUNKED_SHA256)))); in testGetResultDigests()
480 ApkSigningBlockUtils.toHex(digests.get(ContentDigestAlgorithm.CHUNKED_SHA256)))); in testGetV3ResultDigests()
500 ApkSigningBlockUtils.toHex(digests.get(ContentDigestAlgorithm.CHUNKED_SHA256)))); in testGetV2ResultDigests()
520 ApkSigningBlockUtils.toHex(digests.get(ContentDigestAlgorithm.CHUNKED_SHA256)))); in testGetResultIncorrectDigests()
522 ApkSigningBlockUtils.toHex(digests.get(ContentDigestAlgorithm.CHUNKED_SHA256)))); in testGetResultIncorrectDigests()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DApkSigningBlockUtils.java218 toHex(expectedDigest), in verifyIntegrity()
219 toHex(actualDigest)); in verifyIntegrity()
224 toHex(expectedDigest), in verifyIntegrity()
225 toHex(actualDigest)); in verifyIntegrity()
257 public static String toHex(byte[] value) { in toHex() method in ApkSigningBlockUtils
258 return ApkSigningBlockUtilsLite.toHex(value); in toHex()
DApkSigningBlockUtilsLite.java334 public static String toHex(byte[] value) { in toHex() method in ApkSigningBlockUtilsLite
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
DV2SchemeVerifier.java386 ApkSigningBlockUtils.toHex(certificatePublicKeyBytes), in parseSigner()
387 ApkSigningBlockUtils.toHex(publicKeyBytes)); in parseSigner()
/tools/apksig/src/main/java/com/android/apksig/
DApkVerifier.java29 import static com.android.apksig.internal.apk.ApkSigningBlockUtils.toHex;
561 result.addError(Issue.V4_SIG_V2_V3_DIGESTS_MISMATCH, 2, toHex(digestFromV2), in verify()
562 toHex(digestFromV4)); in verify()
822 String actualCertDigest = ApkSigningBlockUtils.toHex(sourceStampCertificateDigest); in verifySourceStamp()
1157 result.addError(Issue.V4_SIG_V2_V3_DIGESTS_MISMATCH, 3, toHex(digestFromV3), in checkV4Signer()
1158 toHex(digestFromV4)); in checkV4Signer()
DSourceStampVerifier.java205 String actualCertDigest = ApkSigningBlockUtilsLite.toHex( in verifySourceStamp()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/
DV3SchemeVerifier.java505 ApkSigningBlockUtils.toHex(certificatePublicKeyBytes), in parseSigner()
506 ApkSigningBlockUtils.toHex(publicKeyBytes)); in parseSigner()