Home
last modified time | relevance | path

Searched refs:manifestBytes (Results 1 – 5 of 5) sorted by relevance

/tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
DManifestGenerationExtension.java102 private CachedSupplier<byte[]> manifestBytes; field in ManifestGenerationExtension
131 manifestBytes = new CachedSupplier<>(() -> { in ManifestGenerationExtension()
149 manifestBytes.reset(); in markDirty()
190 byte[] manifestBytes = manifestEntry.read(); in rebuildManifest()
191 manifest.read(new ByteArrayInputStream(manifestBytes)); in rebuildManifest()
192 this.manifestBytes.precomputed(manifestBytes); in rebuildManifest()
241 zFile.add(MANIFEST_NAME, new ByteArrayInputStream(manifestBytes.get())); in updateManifest()
/tools/apksig/src/main/java/com/android/apksig/internal/apk/v1/
DV1SchemeVerifier.java177 byte[] manifestBytes, Set<String> cdEntryNames, Result result) { in parseManifest() argument
178 ManifestParser manifest = new ManifestParser(manifestBytes); in parseManifest()
255 byte[] manifestBytes; in verify()
257 manifestBytes = in verify()
264 parseManifest(manifestBytes, cdEntryNames, result); in verify()
328 manifestBytes, in verify()
804 byte[] manifestBytes, in verifySigFileAgainstManifest() argument
842 manifestBytes, in verifySigFileAgainstManifest()
849 manifestBytes, in verifySigFileAgainstManifest()
902 manifestBytes, in verifySigFileAgainstManifest()
[all …]
/tools/apksig/src/main/java/com/android/apksig/
DApkSignerEngine.java134 default Set<String> initWith(byte[] manifestBytes, Set<String> entryNames) { in initWith() argument
DDefaultApkSignerEngine.java491 public Set<String> initWith(byte[] manifestBytes, Set<String> entryNames) { in initWith() argument
494 V1SchemeVerifier.parseManifest(manifestBytes, entryNames, dummyResult); in initWith()
DApkVerifier.java631 byte[] manifestBytes = in getApkContentDigestFromV1SigningScheme()
635 ContentDigestAlgorithm.SHA256, computeSha256DigestBytes(manifestBytes)); in getApkContentDigestFromV1SigningScheme()