Searched refs:metaEntries (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarVerifier.java | 83 private final HashMap<String, byte[]> metaEntries; field in StrictJarVerifier 184 HashMap<String, byte[]> metaEntries, boolean signatureSchemeRollbackProtectionsEnforced) { in StrictJarVerifier() argument 187 this.metaEntries = metaEntries; in StrictJarVerifier() 271 metaEntries.put(name.toUpperCase(Locale.US), buf); in addMetaEntry() 292 if (metaEntries.isEmpty()) { in readCertificates() 296 Iterator<String> it = metaEntries.keySet().iterator(); in readCertificates() 357 byte[] sfBytes = metaEntries.get(signatureFile); in verifyCertificate() 362 byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME); in verifyCertificate() 368 byte[] sBlockBytes = metaEntries.get(certFile); in verifyCertificate() 476 metaEntries.put(signatureFile, null); in verifyCertificate() [all …]
|
D | StrictJarFile.java | 113 HashMap<String, byte[]> metaEntries = getMetaEntries(); in StrictJarFile() local 114 this.manifest = new StrictJarManifest(metaEntries.get(JarFile.MANIFEST_NAME), true); in StrictJarFile() 119 metaEntries, in StrictJarFile() 297 HashMap<String, byte[]> metaEntries = new HashMap<String, byte[]>(); in getMetaEntries() local 302 metaEntries.put(entry.getName(), Streams.readFully(getInputStream(entry))); in getMetaEntries() 305 return metaEntries; in getMetaEntries()
|