static L zipFileToJSONFingerprint(File zip) { temp zipFile = zipFile(zip); ret zipFileToJSONFingerprint(zipFile); } static L zipFileToJSONFingerprint(ZipFile zip) { ret map(listZipEntries(zip), e -> litorderedmap(name := e.getName(), size := e.getSize(), crc := intToHex((int) e.getCrc()), date := e.getTime(), )); }