Searched refs:metaEntries (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarVerifier.java | 75 private final HashMap<String, byte[]> metaEntries; field in StrictJarVerifier 176 HashMap<String, byte[]> metaEntries, boolean signatureSchemeRollbackProtectionsEnforced) { in StrictJarVerifier() argument 179 this.metaEntries = metaEntries; in StrictJarVerifier() 263 metaEntries.put(name.toUpperCase(Locale.US), buf); in addMetaEntry() 284 if (metaEntries.isEmpty()) { in readCertificates() 288 Iterator<String> it = metaEntries.keySet().iterator(); in readCertificates() 349 byte[] sfBytes = metaEntries.get(signatureFile); in verifyCertificate() 354 byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME); in verifyCertificate() 360 byte[] sBlockBytes = metaEntries.get(certFile); in verifyCertificate() 457 metaEntries.put(signatureFile, null); in verifyCertificate() [all …]
|
D | StrictJarFile.java | 85 HashMap<String, byte[]> metaEntries = getMetaEntries(); in StrictJarFile() local 86 this.manifest = new StrictJarManifest(metaEntries.get(JarFile.MANIFEST_NAME), true); in StrictJarFile() 91 metaEntries, in StrictJarFile() 254 HashMap<String, byte[]> metaEntries = new HashMap<String, byte[]>(); in getMetaEntries() local 259 metaEntries.put(entry.getName(), Streams.readFully(getInputStream(entry))); in getMetaEntries() 262 return metaEntries; in getMetaEntries()
|