Searched refs:metaEntries (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/util/jar/ |
D | StrictJarVerifier.java | 88 private final HashMap<String, byte[]> metaEntries; field in StrictJarVerifier 189 HashMap<String, byte[]> metaEntries, boolean signatureSchemeRollbackProtectionsEnforced) { in StrictJarVerifier() argument 192 this.metaEntries = metaEntries; in StrictJarVerifier() 276 metaEntries.put(name.toUpperCase(Locale.US), buf); in addMetaEntry() 297 if (metaEntries.isEmpty()) { in readCertificates() 302 Iterator<String> it = metaEntries.keySet().iterator(); in readCertificates() 368 byte[] sfBytes = metaEntries.get(signatureFile); in verifyCertificate() 373 byte[] manifestBytes = metaEntries.get(JarFile.MANIFEST_NAME); in verifyCertificate() 379 byte[] sBlockBytes = metaEntries.get(certFile); in verifyCertificate() 487 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()
|