Home
last modified time | relevance | path

Searched refs:ContentDigest (Results 1 – 6 of 6) sorted by relevance

/tools/apksig/src/main/java/com/android/apksig/internal/apk/v4/
DV4SchemeSigner.java248 final List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> contentDigests = in getBestV3Digest()
285 final List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> contentDigests = in getBestV2Digest()
290 …private static byte[] pickBestDigest(List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> co… in pickBestDigest()
297 for (ApkSigningBlockUtils.Result.SignerInfo.ContentDigest contentDigest : contentDigests) { in pickBestDigest()
DV4SchemeVerifier.java212 ApkSigningBlockUtils.Result.SignerInfo.ContentDigest contentDigest = in parseAndVerifySignatureBlock()
213 new ApkSigningBlockUtils.Result.SignerInfo.ContentDigest( in parseAndVerifySignatureBlock()
/tools/apksig/src/main/java/com/android/apksig/
DApkVerifier.java489 List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> digestsFromV4 = in verify()
596 …yte[] pickBestDigestForV4(List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> contentDigest… in pickBestDigestForV4()
642 … collectApkContentDigests(List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> contentDigest… in collectApkContentDigests()
643 for (ApkSigningBlockUtils.Result.SignerInfo.ContentDigest contentDigest : contentDigests) { in collectApkContentDigests()
1136 private final List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest>
1191 public List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> getContentDigests() { in getContentDigests()
1205 private final List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest>
1256 public List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> getContentDigests() { in getContentDigests()
1271 private final List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest>
1322 public List<ApkSigningBlockUtils.Result.SignerInfo.ContentDigest> getContentDigests() { in getContentDigests()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
DV2SchemeVerifier.java399 new ApkSigningBlockUtils.Result.SignerInfo.ContentDigest( in parseSigner()
412 for (ApkSigningBlockUtils.Result.SignerInfo.ContentDigest digest : result.contentDigests) { in parseSigner()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v3/
DV3SchemeVerifier.java461 new ApkSigningBlockUtils.Result.SignerInfo.ContentDigest( in parseSigner()
474 for (ApkSigningBlockUtils.Result.SignerInfo.ContentDigest digest : result.contentDigests) { in parseSigner()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DApkSigningBlockUtils.java241 for (Result.SignerInfo.ContentDigest expected : signerInfo.contentDigests) { in verifyIntegrity()
1451 public List<ContentDigest> contentDigests = new ArrayList<>();
1488 public static class ContentDigest { class in ApkSigningBlockUtils.Result.SignerInfo
1492 public ContentDigest(int signatureAlgorithmId, byte[] value) { in ContentDigest() method in ApkSigningBlockUtils.Result.SignerInfo.ContentDigest